-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (44 loc) · 838 Bytes
/
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
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Roboto', sans-serif;
color: #ffffff;
background-color: #f4f2f2;
}
.gameDiv {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #2b3e68;
width: 70%;
padding: 2rem;
}
#description {
padding: 2rem;
margin: 0rem 4rem;
}
.sub-button {
color: #ffffff;
background-color: #333333;
border: none;
padding: 0.2rem 0.5rem;
width: 2.5rem;
}
.sub-button:hover {
background-color: #444444;
}
button {
background-color: lightblue;
color: #222222;
padding: 0.5rem;
border: 1px;
border-radius: 4%;
margin: 1rem;
width: 7rem;
}
button:hover {
background-color: rgb(201, 236, 248) ;
}