-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (35 loc) · 714 Bytes
/
style.css
File metadata and controls
40 lines (35 loc) · 714 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
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
padding: 20px;
}
.tip-calculator {
width: 50%;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
display: inline-block;
}
input[type="text"], input[type="range"] {
width: 90%;
padding: 10px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 3px;
}
input[type="text"][disabled] {
background-color: #eee;
font-weight: bold;
}
label {
display: block;
text-align: left;
font-weight: bold;
margin-top: 10px;
}
input[type="range"] {
width: 80%;
margin-top: 0;
}