-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
68 lines (63 loc) · 1020 Bytes
/
index.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: #c6c6c6;
}
h1{
color: #1b244a;
font-size: 3rem;
font-weight: bolder;
margin: 10vh;
}
.container {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #1b244a;
color: white;
width: 575px;
height: 385px;
border-radius: 10px;
border: 5px solid #f3f3f3;
}
h3 {
font-size: 40px;
}
h2 {
background-color: #080001;
width: 155px;
height: 120px;
color: #f94f6d;
text-align: center;
font-size: 90px;
margin: 20px;
padding: 10px 0;
border-radius: 5px;
}
button {
width: 45px;
height: 45px;
background-color: #1b244a;
border: 3px solid #9aabd8;
border-radius: 5px;
color: #9aabd8;
font-size: 18px;
}
.add-two {
margin: 0 5px;
}
#new-game {
position: absolute;
bottom: 10;
width: 8vw;
height: 4vh;
}