-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (112 loc) · 2.19 KB
/
Copy pathstyle.css
File metadata and controls
128 lines (112 loc) · 2.19 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #1e1e1e, #2e2e2e);
color: #e0e0e0;
overflow-x: hidden;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
position: relative;
}
header {
text-align: center;
margin-bottom: 30px;
}
h1 {
color: #00bcd4;
font-size: 2.8em;
margin: 0;
}
p {
font-size: 1.2em;
color: #b0bec5;
}
#main {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.btn {
background-color: #00bcd4;
color: white;
border: none;
border-radius: 5px;
padding: 15px 30px;
font-size: 1.2em;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
position: relative;
overflow: hidden;
z-index: 1;
}
.btn::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
transition: transform 0.3s;
transform: translate(-50%, -50%) scale(0);
z-index: 0;
}
.btn:hover::before {
transform: translate(-50%, -50%) scale(1);
}
.btn:hover {
background-color: #0097a7;
transform: scale(1.05);
z-index: 1;
}
.result {
margin-top: 20px;
padding: 15px;
border-radius: 10px;
font-size: 1.2em;
text-align: center;
}
.status-animation {
margin-top: 20px;
width: 100%;
height: 150px;
position: relative;
}
@keyframes pulse {
0% {
opacity: 0.3;
}
50% {
opacity: 1;
}
100% {
opacity: 0.3;
}
}
.status-animation::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 150px;
height: 150px;
background: linear-gradient(135deg, #00bcd4, transparent);
border-radius: 50%;
transform: translate(-50%, -50%);
animation: pulse 2s infinite;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 0.8em;
color: #b0bec5;
}