-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1015 Bytes
/
style.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
59
60
61
62
63
64
body {
text-align: center;
}
.page > * {
width: 100%;
min-width: 350px;
margin-left: auto;
margin-right: auto;
background: goldenrod;
}
@font-face {
src:url("digital-7/digital-7.ttf");
font-family: digital-7;
}
.flex {
width: 300px;
padding: 30px;
border: solid 0px white;
border-radius: 5px;
display: flex;
justify-content: space-around;
margin-bottom: 20px;
}
h1 {
margin-top: 0;
margin-bottom: 0;
text-align: center;
}
button {
display: inline;
padding: 5px 10px;
margin-right: 5px;
border: solid grey 0px;
border-radius: 5px;
font-family: digital-7;
font-weight: bold;
letter-spacing: 2px;
font-size: 15px;
cursor: pointer;
}
button:hover {
background: red;
}
.set-zero {
padding: 10px 20px;
}
.sum {
background: black;
font-family: digital-7;
color: red;
font-weight: bold;
font-size: 40px;
text-align: center;
padding: 5px 10px;
margin-right: 5px;
}