-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
129 lines (108 loc) · 1.79 KB
/
styles.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
font-family: Arial, sans-serif;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #fff;
text-align: center;
}
input[type="number"],
input[type="text"] {
width: 100%;
margin: 10px 0;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="range"] {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.bill-input-container {
display: flex;
align-items: center;
}
.tip-input-container {
display: flex;
align-items: center;
justify-content: center;
}
.clear-button {
margin-left: 10px;
padding: 10px;
font-size: 18px;
border: none;
border-radius: 4px;
background: #2196F3;
color: white;
cursor: pointer;
}
.clear-button:hover {
background-color: #1976D2;
}
.inline-buttons {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.survey-table {
width: 100%;
border: 1px solid lightgray;
padding: 5px;
}
/* .survey-table td {
padding: 5px;
} */
.keypad {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-top: 10px;
}
.keypad button {
padding: 10px;
font-size: 18px;
border: none;
border-radius: 4px;
background: #2196F3;
color: white;
cursor: pointer;
}
.keypad button:hover {
background-color: #1976D2;
}
.results-table {
width: 100%;
margin-top: 10px;
}
.left-column {
text-align: left;
padding-right: 10px;
}
.right-column {
text-align: right;
}
.green-forest {
color: white;
background-color: forestgreen;
}
.green-dark {
color: white;
background-color: darkgreen;
}
.border-green-forest {
border: 1px solid forestgreen;
}
.border-green-dark {
border: 1px solid darkgreen;
}