-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (57 loc) · 1.04 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body{
font-family: 'Lato', sans-serif;
background-color: #495057;
}
.heading{
font-size: 2.5rem;
}
.heading-text{
font-size: large;
}
.section{
text-align: center;
width: 100%;
max-width: 600px;
min-height: 200px;
margin: auto;
margin-top: 1.5rem;
padding: 2rem 1rem;
background-color: #003049;
color: #eae2b7;
}
#bill-amount{
background-color: #e5e5e5;
padding: 1rem;
width: 90%;
}
#cash-given{
background-color: #e5e5e5;
padding: 1rem;
width: 90%;
}
#error-message{
color: #d62828;
font-weight: bold;
font-size: 2rem;
margin-bottom: 2rem;
}
#button-check{
background-color: #e5e5e5;
padding: 0.5rem;
width: 6rem;
margin: 1rem;
cursor: pointer;
font-weight: bolder;
font-size: 1rem;
}
table, td, th{
padding: 3px;
border: 1px solid black;
width: 100%;
table-layout: fixed;
border-collapse: collapse;
}
td{
background-color: #2b2d42;
}