-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (53 loc) · 1008 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Open Sans", serif;
}
.head{
/* background-color: red; */
display: flex;
justify-content: center;
align-items: center;
height: 60px;
}
#restart {
height: 30px;
width: 60px;
border-radius: 3px;
/* background-color: azure; */
border: 2px solid black;
}
.center{
display: flex;
justify-content: center;
align-items: center;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* background-color: aquamarine; */
gap: 5px;
margin: 10px;
padding: 5px;
}
.container button{
height: 30px;
width: 70px;
color: white;
}
#red{
background-color: red;
}
#blue{
background-color: blue;
}
#green{
background-color: green;
}
#purple{
background-color: Purple;
}