-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (73 loc) · 1.38 KB
/
Copy pathstyles.css
File metadata and controls
81 lines (73 loc) · 1.38 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
}
.container {
position: relative;
width: 100%;
height: 100%;
}
.button {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
padding: 15px 32px;
border: none;
border-radius: 50px;
background: linear-gradient(45deg, #FF512F, #F09819);
color: white;
font-size: 18px;
font-weight: bold;
cursor: pointer;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.button:hover {
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}
.header {
position: fixed;
top: 30px;
text-align: center;
z-index: 10;
max-width: 600px;
padding: 20px;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 10px;
pointer-events: none;
user-select: none;
}
h1 {
margin-bottom: 10px;
font-size: 36px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
p {
font-size: 18px;
opacity: 0.9;
line-height: 1.5;
}
.attempts {
position: fixed;
bottom: 30px;
font-size: 24px;
background-color: rgba(0, 0, 0, 0.2);
padding: 15px 25px;
border-radius: 10px;
z-index: 10;
pointer-events: none;
user-select: none;
}