forked from omkrishna/ColorGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
76 lines (73 loc) · 1.25 KB
/
index.css
File metadata and controls
76 lines (73 loc) · 1.25 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
75
76
* {
margin: 0;
padding: 0;
}
#header {
background-color: lightpink;
height: 30vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#container {
background-color: black;
height: 68vh;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
font-family: 'Londrina Solid', cursive;
}
h1 {
font-family: 'Londrina Solid', cursive;
font-size: 50px;
}
h2 {
font-family: 'Londrina Solid', cursive;
}
#info {
background-color: black;
height: 2vh;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
#tries {
background-color: rgb(127, 245, 117);
border: 3px solid #4CAF50;
height: 20px;
margin-top: 5px;
padding: 5px;
border-radius: 8px;
}
#tries:hover {
background-color: #4CAF50;
color: white;
}
#new {
border-radius: 8px;
height: 20px;
margin-top: 5px;
padding: 5px;
background-color: rgb(127, 245, 117);
color: black;
border: 3px solid #4CAF50;
transition-duration: 0.4s;
}
#new:hover {
background-color: #4CAF50;
color: white;
}
.tile {
height: 35%;
width: 30%;
background-color: aliceblue;
border-radius: 8px;
border: 1px solid white;
}
.tile:hover {
height: 38%;
width: 32%;
background-color: aliceblue;
}