-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (43 loc) · 800 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
body {
background-color: rgb(31, 201, 231);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
#main-box {
background-color: grey;
position: relative;
margin-left: 200px;
margin-right: 200px;
width: 50%;
border-radius: 16px;
border: 1px solid black;
}
header {
background-color: purple;
}
h3 {
text-align: center;
color: white;
}
#bill-info {
text-align: center;
background-color: grey;
border-radius: 16px;
}
#main-option {
color: rgb(169, 166, 170);
}
#calculate {
background-color: red;
}
#numOfPeople {
margin-bottom: 10px;
}
#placehold {
color: rgb(210, 255, 105);
}