-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.css
65 lines (55 loc) · 1.02 KB
/
site.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
65
body {
text-align: center;
background-color: black;
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
input[type="button"] {
background-color: black;
color: white;
border-color: white;
height: 3em;
width: 8em;
}
button {
background-color: black;
color: white;
border-color: white;
height: 3em;
width: 12em;
}
input {
height: 2.5em;
width: 3em;
}
.form-element {
display: inline;
}
.form-element input {
margin: 20px 0;
}
.form-element input[type="button"] {
margin: 20px;
}
.form-layout {
margin: 30px 0;
}
#container {
display: flex;
flex-direction:column;
gap: 20px;
align-items: center;
}
.display-row {
display: flex;
flex-direction: row;
gap: 30px;
max-width: 500px;
}
.summary-box {
border-style: solid;
border-width: 2px;
border-color: white;
width: 60px;
height: 25px;
}