-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
47 lines (40 loc) · 816 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
body {
background-color: pink;
background-size: cover;
font-family: Ubuntu, Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
text-align: center;
}
.container {
background: white;
opacity: 85%;
max-width: 80%;
margin: auto;
border: 3px solid pink;
border-radius: 20px;
}
h1 {
margin-top: 10px;
margin-bottom: 10px;
}
h2 {
font-size: 80px;
margin-top: 0;
margin-bottom: 20px;
}
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: lighter;
width: 220px;
margin-bottom: 5px;
border-radius: 5px;
}
#increment-btn {
background: darkslateblue;
}
#save-btn {
background: darkseagreen;
}