forked from hemavenkat8642/Tip_Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (41 loc) · 788 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
.tip-calculator-container {
background-color: #f9fbfe;
}
.tip-calculator-image {
width: 100%;
}
.tip-calculator-heading {
color: #264fa2;
font-family: "Roboto";
font-size: 48px;
font-weight: 500;
}
.input-label {
color: #7b8794;
font-family: "Roboto";
font-size: 12px;
font-weight: bold;
}
.user-input {
height: 40px;
width: 100%;
border-style: solid;
border-width: 1px;
border-color: #cbd2d9;
border-radius: 4px;
padding-left: 12px;
}
.calculate-tip-button {
background-color: #264fa2;
color: white;
font-family: "Roboto";
font-size: 18px;
border-radius: 4px;
}
.error-message {
color: #cf1124;
font-family: "Roboto";
font-size: 14px;
font-weight: 500;
margin-top: 10px;
}