-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
163 lines (162 loc) · 2.75 KB
/
style.css
File metadata and controls
163 lines (162 loc) · 2.75 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
:root{
--Strong_cyan: hsl(172, 67%, 45%);
--Very_dark_cyan: hsl(183, 100%, 15%);
--Dark_grayish_cyan: hsl(186, 14%, 43%);
--Grayish_cyan: hsl(184, 14%, 56%);
--Light_grayish_cyan: hsl(185, 41%, 84%);
--Very_light_grayish_cyan: hsl(189, 41%, 97%);
--White: hsl(0, 0%, 100%);
}
body{
background-color: var(--Light_grayish_cyan);
font-family: Space Mono;
font-weight: 700;
font-size: 13px;
margin: 0;
padding:0;
color: var(--Dark_grayish_cyan);
}
.logo{
text-align: center;
margin-top: 80px;
}
.box{
background-color: var(--White);
width: 700px;
height: 350px;
border-radius: 10px;
margin: 20px auto;
display: flex;
}
.bill{
margin-bottom: 2px;
}
.box input{
text-align: right;
cursor: pointer;
position: relative;
left: 1px;
padding: 5px;
font-weight: 700;
color: var(--Very_dark_cyan);
}
.box input:hover{
border: 2px solid var(--Strong_cyan);
}
.lbox{
border: 2px solid none;
margin: 10px;
padding: 10px;
}
.lbox img{
position: relative;
bottom: 25px;
left: 8px;
}
.tip{
margin-top: 20px;
}
.label{
padding: 20px 0px 0px 10px;
}
.per{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 5px;
}
.per .box{
margin: 0;
background-color: var(--Very_dark_cyan);
width: 60px;
height: 30px;
color: var(--White);
font-size: 18px;
border-radius: 3px;
cursor: pointer;
text-align: center;
}
.per input{
width:80px;
border-radius: 3px;
border: 2px solid var(--Very_dark_cyan);
}
.per .box:hover{
color: var(--Very_dark_cyan);
background-color: var(--Strong_cyan);
}
.rbox{
border: 2px solid none;
margin: 10px;
padding: 10px;
width: 300px;
background-color: var(--Very_dark_cyan);
border-radius: 15px;
}
input{
width: 300px;
border: 1px solid var(--Very_dark_cyan);
}
.para{
color: var(--White);
}
span{
color: var(--Dark_grayish_cyan);
}
.left{
display: flex;
padding: 10px;
margin-top: 20px 10px;
}
.right{
display: flex;
padding: 10px;
margin-top: 20px 10px;
}
p{
flex: 1px;
}
.cannot{
padding: 0px 0px 0px 65px;
}
.tipAmount{
padding-top: 15px;
font-size: 20px;
color: var(--Strong_cyan);
flex: 2px;
height: 30px;
}
.totalAmount{
padding-top: 15px;
font-size: 20px;
color: var(--Strong_cyan);
flex: 2px;
}
.pp{
display: flex;
flex-direction: column;
flex: 1px;
}
.ppp{
display: flex;
flex-direction: column;
flex: 1px;
}
a{
background-color: var(--Strong_cyan);
border:20px solid none;
margin: 60px 100px;
display: flex;
width: 100px;
text-decoration: none;
font-size: 20px;
font-weight: 700;
color: var(--Very_dark_cyan);
padding: 5px 0px 5px 35px;
border-radius: 10px;
cursor: pointer;
}
.errormsg{
position: absolute;
bottom: 395px;
left: 34%;
}