-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (72 loc) · 1.19 KB
/
style.css
File metadata and controls
73 lines (72 loc) · 1.19 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
body{
margin:0;
padding:0;
}
header{
width:100%;
height:100px;
background-color: whitesmoke;
margin:0;
padding:0;
}
header img{
height:100px;
width:150px;
float:left;
}
header h1{
text-align: center;
padding: 30px;
}
#sidebar{
background-color: whitesmoke;
height: 100%;
width:20%;
float:left;
padding: .5% 0;
}
#sidebar ul {
list-style-type: none;
margin:0;
padding:15px 0;
}
#sidebar li a{
display: block;
text-decoration: none;
padding: 10px 25px;
color: brown;
}
#sidebar li a:hover{
background-color: burlywood;
color: black;
}
#main{
width: 78%;
height: auto;
overflow: auto;
padding: .5% 1%;
}
table{
width:100%;
}
table, th, td{
border: 1px solid;
border-collapse: collapse;
}
th,td{
padding: 10px;
}
input[type=text],input[type=email],select{
width:100%;
padding: 10px 15px;
margin: 0 0 20px 0;
border: 1px solid;
display: inline-block;
box-sizing: border-box;
}
input[type=submit]{
width:100%;
padding: 20px;
margin: 15px 0;
background-color: cadetblue;
}