-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavaScript.css
More file actions
53 lines (52 loc) · 819 Bytes
/
javaScript.css
File metadata and controls
53 lines (52 loc) · 819 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
*{
margin: 0px;
padding: 0px;
}
#container{
background-color: blue;
width: 700px;
height: 700px;
margin: auto;
}
#header{
background-color: #f40c21;
position: relative;
top:10px;
margin: 10px;
height: 35px;
padding: 10px 10px 20px 10px;
border-radius: 5px;
}
#rightSide{
background-color: #6a73b0;
margin: 20px 10px 10px 10px;
width: 150px;
height: 230px;
padding: 0px 20px 0px 20px;
border-radius: 5px;
}
#list{
padding-left: 10px;
}
#leftSide{
background-color: black;
width: 400px;
margin-top: 20px;
padding: 0px;
border-radius: 5px;
}
#leftSide,#rightSide{
display: inline-block;
vertical-align: top;
}
p,h2{
color:white;
}
#footer{
background-color: gray;
height: 35px;
padding-top: 10px;
padding-left: 10px;
margin: 10px;
border-radius: 5px;
}