-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (57 loc) · 1.12 KB
/
style.css
File metadata and controls
66 lines (57 loc) · 1.12 KB
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
66
body {
background-color: #cc8955;
font-weight: bold;
text-align: center;
}
.counter{
background-color: #f0eaec;
padding: 20px;
border: 2px solid #301203;
border-radius: 20px;
max-width: 80%;
margin: 0 auto;
margin-top: 150px;
}
h1 {
color: #f0eaec;
margin-top: 10px;
margin-bottom: 10px;
}
h2 {
color: #f0eaec;
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
}
h1, h2 {
padding: 10px 20px;
background-color: #301203;
border-radius: 20px;
text-shadow: 0 2px #301203;
font-family: 'Eras Medium ITC', sans-serif;
}
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
width: 200px;
margin-bottom: 5px;
border-radius: 5px;
}
button:hover {
border: 2px solid #301203;
}
#increment-btn {
background: #d33a01;
}
#save-btn {
background: #fa8a38;
}
p {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #301203;
border: 2px solid #301203;
border-style: dashed;
}