forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
51 lines (46 loc) · 1.06 KB
/
app.css
File metadata and controls
51 lines (46 loc) · 1.06 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
*{
box-sizing:border-box;
}
.tableData{
font-weight:bold;
}
#header {
margin-top:40px;
width : 75%;
height:75px;
background-color:blue;
text-align:left;
padding-top: 25px;
border:2px solid black;
font-family: 'Times New Roman', Times, serif;
font-size: 1em;
box-shadow:10px 7px 5px 5px rgba(0, 0, 0, 0.075);
}
#selectLabel{
padding: 2px 10px 2px 15px ;
color: white;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
}
#selectID{
width:20%;
height:30px;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
padding: 2px 10px 2px 15px ;
box-shadow: 7px 5px 5px rgba(0, 0, 0, 0.075);
}
#tableContainer{
background-color:white;
font-size:18px;
font-family: 'Times New Roman', Times, serif;
margin: 40px 0 0 30px;
width:30%;
height:120px;
box-shadow:10px 7px 5px 5px rgba(0, 0, 0, 0.075);
padding:5px;
}
.alert-error{
background-color: bisque;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}