-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.css
More file actions
64 lines (55 loc) · 828 Bytes
/
Copy pathProject.css
File metadata and controls
64 lines (55 loc) · 828 Bytes
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
body{
padding: 0;
margin: 0;
}
.header{
background-color: white;
text-align: center;
height: 100px;
}
.SideBar{
background-color: blue;
height: 400px;
width: 15%;
padding: 2%;
text-align: center;
float: left;
}
.SideBar a{
text-decoration: none;
}
.Project{
background-color: gray;
margin: 10px;
padding: 10px;
color: white;
}
.Project:hover{
background-color: black;
}
.Content{
background-color: orange;
height: 400px;
width: 77%;
display: inline-block;
padding: 2%;
}
form {
padding: 20px;
display: inline-block;
}
input, select {
padding: 3px;
margin-bottom: 3px;
}
.lebar {
width: 430px;
}
.submit {
padding: 2px 9px;
}
.Footer{
background-color: green;
height: 50px;
text-align: center;
}