-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
51 lines (45 loc) · 895 Bytes
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 50px;
}
h1 {
display: flex;
justify-content: center;
font-family: Arial, Helvetica, Verdana, sans-serif;
font-size: 60px;
margin-bottom: 50px;
}
.button {
display: flex;
justify-content: space-between;
}
.button button {
color: white;
background-color: blue;
font-size: 30px;
font-family: Arial, Helvetica, Verdana, sans-serif;
font-weight: bold;
padding: 10px 20px;
margin-bottom: 50px;
border-radius: 15px;
}
.button button:hover {
color: blue;
background-color: white;
border: 2px solid blue;
}
div.container {
display: flex;
flex-direction: column;
height: 900px;
width: 900px;
border: 1px solid black;
}