-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (71 loc) · 1.51 KB
/
styles.css
File metadata and controls
82 lines (71 loc) · 1.51 KB
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
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700|PT++Mono);
:root {
--primary-color: #47b7ba;
--secondary-color: rgb(255, 136, 0);
--terciary-color: linen;
}
body {
background-color: var(--primary-color);
font-size: 15px;
font-family: Lato, sans-serif;
}
#container {
height: 525px;
width: 360px;
margin: 100px auto;
background: var(--terciary-color);
box-shadow: 3px 3px 3px;
border-radius: 20px;
}
.title {
background: var(--terciary-color);
color: var(--secondary-color);
padding: 20px;
text-transform: uppercase;
font-size: 20px;
font-weight: bolder;
border-top-right-radius: 20px;
border-top-left-radius: 20px;
text-align: center;
}
.tipsForm {
padding-left: 30px;
padding-right: 30px;
}
.formInput {
background: white;
width: 60px;
padding: 2px 2px 5px 5px;
}
.formInput:focus{
border: 3px solid var(--primary-color);
outline: none;
}
.formSelect {
width: 180px;
padding: 5px;
}
.formSubmit {
text-transform: uppercase;
font-weight: bold;
display: block;
margin: 40px auto;
background-color: var(--primary-color);
border-radius: 10px;
width: 200px;
height: 50px;
font-size: 16px;
color: white;
}
#svcQual {
margin-top: 30px;
}
#ppl {
margin-top: 30px;
}
#totalTip {
text-transform: uppercase;
font-size: 15px;
margin-top: 5px;
text-align: center;
}