-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavajam.css
More file actions
79 lines (67 loc) · 1.31 KB
/
javajam.css
File metadata and controls
79 lines (67 loc) · 1.31 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
74
75
76
77
78
79
body{
background-color: #FCEBB6;
color: #221811;
font-family: Verdana, Arial, sans-serif;
background-image: url(images/background.gif);
}
header{
background-color: #D2B48C;
height: 150px;
background-image: url(images/javajamlogo.jpg);
background-repeat: no-repeat;
}
#wrapper{
background-color: #FEF6C2;
width: 80%;
margin-right: auto;
margin-left: auto;
min-width: 900px;
max-width: 1280px;
box-shadow: 3px 3px 3px #666666;
}
nav{
text-align: center;
font-weight: bold;
font-size: 1.5em;
padding-top: 10px;
float:left;
width: 200px;
}
nav a{text-decoration: none;}
nav ul { list-style-type: none;
padding-left: 0;
}
main{
padding: 0 0 2em 0;
margin-left: 200px;
background-color: #FEF6C2;
}
footer{
background-color: #D2B48C;
font-size: small;
font-style: italic;
text-align: center;
padding-bottom: 10px;
border-top: 2px #221811 solid;
}
h1{
padding-top: 45px;
padding-left: 220px;
font-size: 3em;
}
h4{
background-color: #D2B48C;
font-size: 1.2em;
padding-left: 10px;
padding-bottom: 5px;
}
img{
padding-left: 10px;
padding-right: 10px;
}
.details{
padding-left: 20%;
padding-right: 20%;
}
* { box-sizing: border-box; }
header, nav, main, footer { display: block; }