forked from PrimeAcademy/weekend-js-salary-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (85 loc) · 1.43 KB
/
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
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
body {
margin: 0;
background-color: #004643;
font-family: 'Roboto', sans-serif;
}
.title-bar {
display: flex;
height: 100px;
background-color: #fffffe;
}
h1 {
margin: auto;
color: #004643;
font-family: 'Roboto', sans-serif;
font-size: 64px;
letter-spacing: .2rem;
}
/***************** FORM CSS *****************/
#input-section {
padding:0 20px 0 20px;
display: flex;
}
#input-section > h3 {
padding-top: 15px;
}
#input-fields {
margin: auto;
padding-top: 25px;
}
h3 { padding-left: 4px;}
.input {
padding: 8px;
margin: 2px;
}
#submit-btn-div {
text-align: right;
padding: 10px 1px 0 0;
}
#submit-btn, .delete-btn {
padding: 10px;
background-color: #f9bc60;
color: #001e1d;
border: 0px;
border-radius: 2px;
}
/********** TABLE CSS ********************/
#employees-section {
padding:0 20px 0 20px;
}
h3 { color: #abd1c6; }
th {
color: #0f3433;
}
table-box {
padding: 10px;
}
table {
border-collapse: collapse;
width: 100%;
}
thead {
background-color: #f9bc60;
text-transform: uppercase;
font-size: 0.875rem;
font-weight: bold;
}
th, td {
border: 1px solid;
border-color: #a7a9be;
padding: 8px;
color: #fffffe
}
thead th {
width: 5%;
}
#total-text {
text-align: right;
padding-right: 20px;
}
.over {
background-color: #e16162;
}
.under {
background-color: #004643;
}