-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
56 lines (55 loc) · 1 KB
/
style1.css
File metadata and controls
56 lines (55 loc) · 1 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
body{
background: #0f0f0f;
overflow: hidden;
color: white;
font-family: 'Quicksand', sans-serif;
}
.yellow{
color: #fecb06
}
#playground{
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 20vh
}
.btn{
display:block;
border: none;
padding: 5px 20px;
font-size: 30px;
background: #fecb06;
color: #0f0f0f;
margin-left: auto ;
margin-right: auto ;
text-align:center;
transition: color 600ms ease-in-out, background 600ms ease-in-out;
}
.btn:hover{
background: #0f0f0f;
color: #fecb06;
transition: color 300ms ease-in-out, background 300ms ease-in-out;
}
#block{
position: absolute;
border: 1px solid #fecb06;
height: 35px;
width: 35px;
display: none;
}
#block2{
position: absolute;
border: 1px solid #06d1fe;
height: 35px;
width: 35px;
display: none;
}
footer{
opacity: 0.7;
text-align: center
}
.ue{
text-align: center;
font-size: 40px;
}