-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
58 lines (50 loc) · 905 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
body {
background-image: url("../1590118640485.png");
background-size: cover;
font-family: "Roboto", sans-serif;
font-weight: bold;
text-align: center;
height: 100vh;
}
.container {
background: #faeee7;
max-width: 80%;
margin: auto;
border-radius: 16px;
}
h1 {
font-size: 24px;
margin-top: 10px;
margin-bottom: 10px;
color: #33272a;
}
h2 {
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
color: #ff8ba7;
}
button {
font-size: 14px;
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: #33272a;
font-weight: bold;
width: 200px;
margin-bottom: 5px;
border-radius: 5px;
}
#increment-btn {
background: #ffc6c7;
}
#increment-btn:hover {
background-color: #f1d4d5;
transition: 10ms color;
}
#save-btn {
background: #ff8ba7;
}
#save-btn:hover {
background: #fca1b6;
}