-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcolor.css
More file actions
74 lines (73 loc) · 1.15 KB
/
Copy pathcolor.css
File metadata and controls
74 lines (73 loc) · 1.15 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
body{
background-color: black;
margin: 0;
}
h1{
font-family: Bangers;
color: white;
text-align: center;
font-size: 59px;
}
.square{
width: 30%;
background-color: green;
padding-bottom: 30%;
float: left;
margin: 1.66%;
border-radius: 25%;
transition: all 0.7s;
-webkit-transition:all 0.7s;
-moz-transition: all 0.7s;
}
#container{
margin: 20px auto;
max-width: 600px;
}
span{
color: white;
text-align: center;
}
#stripe{
text-align: center;
height:35px;
}
#message{
font-family: Bangers;
font-size: 19px;
}
#stripe2{
font-family: Bangers;
font-size: 19px;
background: rbg(123, 65, 45);
text-align: center;
}
.selected{
background :rgb(100,100,200);
}
#easybtn{
font-family: Bangers;
font-size: 19px;
}
#hardbtn{
font-family: Bangers;
font-size: 19px;
}
#stripe{
background: rgba(255,255,255,0.51);
}
p{
font-family: Bangers;
font-size: 49px;
}
button{
border: none;
background: none;
height:100%;
letter-spacing: 1px;
color: azure;
transition: all 0.4s;
}
button:hover{
color: azure;
background: rgb(100,100,200);
}