-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
48 lines (42 loc) · 917 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
body {
background-image: url(https://images.pexels.com/photos/14127944/pexels-photo-14127944.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
background-repeat: no-repeat;
background-size: cover;
font-family: "Open Sans", "Helvetica Neue", sans-serif;
font-weight: bold;
text-align: center;
}
.container {
max-width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 0 auto;
}
h1 {
margin-top: 10px;
margin-bottom: 10px;
}
h2 {
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
}
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: rgb(0, 0, 0);
font-weight: 700;
width: 200px;
margin-bottom: 5px;
border-radius: 10px;
cursor: pointer;
}
#increment-btn {
background: rgb(207, 155, 77);
}
#save-btn {
background: rgb(212, 226, 84);
}