-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
62 lines (50 loc) · 917 Bytes
/
main.css
File metadata and controls
62 lines (50 loc) · 917 Bytes
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
body {
height: 100%;
background-color: #e0d7d3;
}
#wrapper {
text-align: center;
border-top: 10px solid #626670;
}
#calc-body {
background-color: #bec6c3;
padding: 2% 0 2% 0;
margin-bottom: 16px;
}
#how-btn {
margin-bottom: 16px;
}
#check {
text-align: center;
}
#custom-perc {
text-align: center;
width: 112px;
}
#split-input {
text-align: center;
width: 72px;
}
#percentage-col, #custom-col, #split-col {
margin-bottom: 2%;
}
#clear-btn {
background-color: #CD8959;
color: white;
font-weight: bold;
border: 1px solid black;
}
.tip-btn, #round-btn, #split-btn {
background-color: #626670;
color: whitesmoke;
border: 1px solid black;
}
.tip-btn:hover, #round-btn:hover, #split-btn:hover {
color: black;
}
.modal-header, .modal-footer {
background-color: #bec6c3;
}
.modal-body {
background-color: #e0d7d3;
}