-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (72 loc) · 3.48 KB
/
style.css
File metadata and controls
81 lines (72 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body {
margin: 0;
background: linear-gradient(180deg, #000000, #120008, #000000);
font-family: Arial, sans-serif;
color: #d6d6d6;
overflow-x: hidden;
position: relative;
}
#particles-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
z-index: 0;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: #ff003c;
opacity: 0.8;
border-radius: 50%;
animation-name: fall;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes fall {
0% { transform: translateY(-10px); }
100% { transform: translateY(110vh); }
}
/* Reszta stylu */
.header { text-align: center; padding: 40px 0; z-index: 1; position: relative; }
.title { font-family: 'Cinzel Decorative', serif; font-size: 60px; color: #ff0015; text-shadow: 0 0 20px #ff093f, 0 0 40px #b4001f; animation: flicker 2.5s infinite; display: inline-block; }
.subtitle { color: #b3b3b3; margin-top: 10px; font-family: 'Cinzel Decorative', serif; font-size: 35px; text-shadow: 0 0 15px #ff003c; display: inline-block; }
.blok { width: 90%; max-width: 900px; margin: 50px auto; z-index: 1; position: relative; }
.naglowek { font-family: 'Cinzel Decorative', serif; color: #ff093f; text-shadow: 0 0 15px #ff003c; border-bottom: 2px solid #ff003c; padding-bottom: 10px; margin-bottom: 30px; text-align: center; }
.karta { background: rgba(20, 0, 10, 0.6); padding: 20px; margin: 25px 0; border-left: 3px solid #ff003c; border-radius: 4px; box-shadow: 0 0 20px rgba(255, 0, 40, 0.2); z-index: 1; position: relative; font-family: 'Cinzel Decorative', serif; }
.card-title { font-family: 'Cinzel Decorative', serif; color: #ff3c70; font-size: 24px; text-shadow: 0 0 10px #ff003c; margin-bottom: 10px; }
.code.st-stranger {white-space: pre-wrap; background: rgba(0,0,0,0.6); padding: 15px; border-radius: 4px; color: #ff3c70; border-left: 4px solid #ff003c; font-size: 16px; font-family: 'Cinzel Decorative', serif; text-shadow: 0 0 10px #ff003c; animation: flicker 2.5s infinite; }
.inp { width: 100%; padding: 10px; margin-top: 10px; background: #1b0a12; border: 1px solid #ff003c; color: white; border-radius: 4px; }
.inp:focus { outline: none; box-shadow: 0 0 15px #ff003c; }
.btn { width: 100%; padding: 12px; margin-top: 15px; background: #ff003c; border: none; color: white; font-size: 16px; border-radius: 4px; cursor: pointer; box-shadow: 0 0 10px #ff003c; transition: 0.2s; text-shadow: 0 0 10px #ff003c;}
.btn:hover { background: #ff204f; box-shadow: 0 0 20px #ff003c; }
.wynik { margin-top: 15px; font-size: 20px; font-weight: bold; margin-left: 10px; }
.st-stranger-question { font-family: 'Cinzel Decorative', serif; font-size: 18px; margin-bottom: 10px; color: #ff3c70 ; color: floralwhite ; text-shadow: 0 0 10px #ff003c; }
.footer { text-align: center; margin: 50px 0 20px 0; font-family: 'Cinzel Decorative', serif; color: #ff3c70; text-shadow: 0 0 10px #ff003c; font-size: 18px; }
/* Language Switcher */
.language-switcher {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.lang-btn {
font-family: 'Cinzel Decorative', serif;
background: none;
border: none;
color: #d6d6d6;
cursor: pointer;
font-size: 20px;
margin: 0 10px;
padding: 5px 10px;
transition: color 0.3s, text-shadow 0.3s;
}
.lang-btn:hover, .lang-btn.active {
color: #ff093f;
text-shadow: 0 0 15px #ff003c;
}
@keyframes flicker { 0%,100%