-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (70 loc) · 1.53 KB
/
style.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
h1 {
text-align: center;
color: blue;
background-color: blue;
border: 5px;
border-radius: 5px;
background-size: 25px;
animation: changecolors 3s alternate infinite;
font-family: 'Bebas Neue', cursive;
}
.box {
background-color: rgb(255, 255, 255);
width: 150px;
height: 150px;
border: 5px solid blue;
border-radius: 10px;
flex-direction: row;
margin: 10px;
background-size: contain;
animation: changecolors 3s alternate infinite;
}
.i {
display: flex;
flex-direction: row;
justify-content: center;
}
.btn {
display: flex;
justify-content: center;
}
button {
background-color: blue;
animation: changecolors 3s alternate infinite;
font-family: 'Bebas Neue', cursive;
height: 50px;
width: 100px;
}
body {
background-color: grey;
background-image: url();
}
#displayWinner {
color: white;
font-size: 100px;
font-family: 'Bebas Neue', cursive;
margin: 200px, 0px, 0px, 0px;
justify-content: center;
text-align: center;
animation: changedw 3s alternate infinite;
}
@keyframes changecolors {
0% {color: white;}
50%{color: rgb(red, green, blue)}
100%{color: gold;}
}
@keyframes changedw {
0% {color: white; font-size: 25px;}
50%{color: rgb(red, green, blue)}
100%{color: gold; font-size: 75px;}}
#btn {
margin-right: 25px;
}
#reset {
margin-left: 25px;
}
#list {
text-align: center;
animation: changecolors 3s alternate infinite;
font-family: 'Bebas Neue', cursive;
}