-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (63 loc) · 1.35 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
/*
* Created by PhpStorm.
* User: ritwik.shanker
* Copyright of Esterline Technologies (c) 2018.
*/
body {
font-family: "Lato", sans-serif;
background-color: lightgray;
}
input[type=text], input[type=file], select, textarea {
border: 1px solid #ccc;
border-radius: 6px;
overflow: auto;
width: 70ch;
white-space: nowrap;
padding: 10px;
}
input[type=submit] {
background-color: #555;
color: white;
margin: 0 auto;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #A3A3A3;
color: black;
}
.nav > li > a {
font-size: 18px;
background-color: #e3f2fd;
font-style: normal;
}
.table {
margin-top: 5%;
}
#StatusTable {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
border-style: solid groove;
margin-top: 5%;
}
#StatusTable td, #StatusTable th {
border: 1px solid #ddd;
padding: 8px;
overflow: hidden;
}
#StatusTable tr:nth-child(even) {
background-color: #f2f2f2;
}
#StatusTable tr:hover {
background-color: #ddd;
}
#StatusTable th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #555;
color: white;
}