-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
139 lines (121 loc) · 2.78 KB
/
index.css
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
* {
margin:0;
padding:0;
font-family:consolas;
box-sizing:border-box ;
}
body{
background:#050801;
}
.row1 {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 1rem;
}
.cyan, .blue, .purple, .lime, .orange, .chaanakam, .pink, .yellow, .magenta, .red {
position:relative ;
display:flex;
align-items: center;
justify-content: center;
padding:25px 30px;
margin:40px 0;
color:#03e9f4;
font-size:24px;
text-decoration:none;
text-transform:uppercase;
transition:0.5s;
letter-spacing:4px;
}
.cyan:hover{
background:#03e9f4;
color:#050801;
box-shadow:0 0 5px #03e9f4,0 0 25px #03e9f4,0 0 50px #03e9f4,0 0 200px #03e9f4;
}
.blue {
color:#0062ff;
}
.blue:hover{
background:#0062ff;
color:#050801;
box-shadow:0 0 5px #0062ff,0 0 25px #0062ff,0 0 50px #0062ff,0 0 200px #0062ff;
}
.purple {
color:#9900ff;
}
.purple:hover{
background:#9900ff;
color:#050801;
box-shadow:0 0 5px #9900ff,0 0 25px #9900ff,0 0 50px #9900ff,0 0 200px #9900ff;
}
.orange {
color:#ff6600;
}
.orange:hover{
background:#ff6600;
color:#050801;
box-shadow:0 0 5px #ff6600,0 0 25px #ff6600,0 0 50px #ff6600,0 0 200px #ff6600;
}
.lime {
color:#39ff14;
}
.lime:hover{
background:#39ff14;
color:#050801;
box-shadow:0 0 5px #39ff14,0 0 25px #39ff14,0 0 50px #39ff14,0 0 200px #39ff14;
}
.chaanakam {
color:#106200;
}
.chaanakam:hover{
background:#106200;
color:#050801;
box-shadow:0 0 5px #106200,0 0 25px #106200,0 0 50px #106200,0 0 200px #106200;
}
.pink {
color:#ff6ec7;
}
.pink:hover{
background:#ff6ec7;
color:#050801;
box-shadow:0 0 5px #ff6ec7,0 0 25px #ff6ec7,0 0 50px #ff6ec7,0 0 200px #ff6ec7;
}
.yellow {
color:#ffff00;
}
.yellow:hover{
background:#ffff00;
color:#050801;
box-shadow:0 0 5px#ffff00,0 0 25px#ffff00,0 0 50px#ffff00,0 0 200px#ffff00;
}
.red {
color:#f21a1d;
}
.red:hover{
background:#f21a1d;
color:#050801;
box-shadow:0 0 5px#f21a1d,0 0 25px#f21a1d,0 0 50px#f21a1d,0 0 200px#f21a1d;
}
.magenta {
color:#ff1493;
}
.magenta:hover{
background:#ff1493;
color:#050801;
box-shadow:0 0 5px#ff1493,0 0 25px#ff1493,0 0 50px#ff1493,0 0 200px#ff1493;
}
@media screen and (max-width: 992px) {
.row1 {
grid-template-columns: repeat(2, 1fr);
}
.cyan, .blue, .purple, .lime, .orange, .chaanakam, .pink, .yellow, .magenta, .red {
font-size: 3rem;
}
}
@media screen and (max-width: 600px) {
.row1 {
grid-template-columns: repeat(2, 1fr);
}
.cyan, .blue, .purple, .lime, .orange, .chaanakam, .pink, .yellow, .magenta, .red {
font-size: 2rem;
}
}