-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.css
99 lines (98 loc) · 1.47 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
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins';
}
.Main h3
{
color: white;
align-self: center;
word-spacing:5px;
letter-spacing: 5px;
padding: 10px;
}
.Main
{
height: 100vh;
width: 100vw;
display: grid;
grid-template-rows: repeat(3,1fr);
background: url('/Images/Stars.svg');
background-color: rgb(50, 35, 65);
text-align: center;
overflow:hidden;
}
.Timer
{
display: grid;
grid-template-columns: repeat(4,6rem);
grid-template-rows: repeat(2,1fr);
justify-content:center;
align-items: center;
}
.Icons
{
background: url('/Images/Hills.svg');
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items:center;
}
.Icons i
{
font-size: 30px;
margin: 0px 10px ;
color: rgb(216, 215, 215);
}
.Icons i:hover
{
color: rgb(224, 28, 61);
}
.Content-No , .Btn
{
margin: 10px;
padding: 20px;
color: rgb(224, 28, 61);
background-color: rgb(15, 8, 22);
border-radius: 10px;
}
.Content
{
color: rgb(216, 215, 215);
}
.Buttons
{
grid-column: 1/-1;
}
.Buttons .Btn
{
border: none;
color: rgb(6, 238, 180);
}
.Btn:hover
{
cursor: pointer;
}
.Btn i
{
color: rgb(216, 215, 215);
}
.Noner
{
pointer-events: none;
}
@media (max-width:400px)
{
.Timer
{
grid-template-columns: repeat(4,1fr);
}
.Btn
{
padding: 10PX;
margin: 5PX;
}
}