-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAURAV.html
289 lines (135 loc) · 3.49 KB
/
SAURAV.html
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<title>
</title>
</head>
<body>
<ab1>
<s1>
<si>
Hello
</si>
</s1>
<style>
body{
padding: 0;
margin: 0;
height: 100vh;
background: #70ec1d;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
si {
position: relative;
height: 80px;
width: 80px;
background: #0d2ddf;
color: #555;
display: flex;
display: flex;
justify-content: center;
align-items: center;
font-size: 46px;
cursor: pointer;
margin: 0 4px;
border-radius: 20px;}
}</style>
</ab1>
<!-- in this the buton name was riten -->
<ab2>
<ul>
<li>
<input type="checkbox" />
<div>S</div>
</li>
<li>
<input type="checkbox" />
<div>A</div>
</li>
<li>
<input type="checkbox" />
<div>U</div>
</li>
<li>
<input type="checkbox" />
<div>R</div>
</li>
<li>
<input type="checkbox" />
<div>A</div>
</li>
<li>
<input type="checkbox" />
<div>V</div>
</li>
</ul>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');
body {
padding: 0;
margin: 0;
height: 100vh;
background: #08090f;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
ul {
position: relative;
display: flex;
}
li {
list-style: none;
}
label {
position: relative;
}
input[type="checkbox"] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 80px;
width: 80px;
z-index: 100;
}
div {
position: relative;
height: 80px;
width: 80px;
background: #18191f;
color: #555;
display: flex;
display: flex;
justify-content: center;
align-items: center;
font-size: 46px;
cursor: pointer;
margin: 0 4px;
border-radius: 20px;
box-shadow: -1px -1px 4px rgba(255, 255, 255, 0.05),
4px 4px 6px rgba(0, 0, 0, 0.2),
inset -1px -1px 4px rgba(255, 255, 255, 0.05),
inset 1px 1px 1px rgba(0, 0, 0, 0.1);
}
input[type="checkbox"]:checked ~ div {
box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.05),
inset 4px 4px 6px rgba(0, 0, 0, 0.2);
color: yellow;
text-shadow: 0 0 15px yellow, 0 0 25px yellow;
animation: glow 1.5s linear infinite;
}
@keyframes glow {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
</style>
</ab2>
</body>
</html>