-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (59 loc) · 1.11 KB
/
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
65
66
67
68
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body {
background-color: #f5f5f5;
font-family: 'Roboto', sans-serif;
background-image: url("breadSliced1.png");
background-size: cover;
background-repeat: no-repeat;
}
input[type="number"] {
margin: 5px 0 0 0;
padding: 5px;
font-size: 18px;
width: 60px;
text-align: center;
}
button {
margin: 55px auto 55px auto;
display: block;
padding: 10px 20px;
font-size: 20px;
background-color: #c8780e;
color: white;
border: 2px solid black;
border-radius: 10px;
cursor: pointer;
}
label {
margin: 5px 0 0 0;
font-size: 20px;
}
#results {
margin-top: 25px;
font-size: 20px;
background-color: #f5f5f5;
}
table {
border-collapse: collapse;
width: 80%;
margin-top: 150px;
margin-left: auto;
margin-right: auto;
align-items: center;
background-color: #f5f5f5;
}
td, th {
border: 2px solid black;
padding: 10px;
text-align: center;
}
th {
background-color: #c8780e;
color: white;
font-size: 20px;
}