summaryrefslogtreecommitdiffstats
path: root/style.css
blob: ae685e0bce3beef2d1132909cdd3edc90c5c5ced (plain)
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
80
81
body
{
	background-color: black;
	color: blue;
	background-image: url('Background.png');
	background-repeat: no-repeat;
	background-position: left top;
}

a
{
	color: aqua;
}

a:visited
{
	color: lightpink;
}

a:hover
{
	color: deeppink;
}

body > header
{
	margin-left: 17em;
	margin-bottom:2em;
}

header > img
{
	width: 70%;
}

aside
{
	float: left;
	width: 13em;
}

nav
{
	background-color: black;
	width: 13em;
	padding: 0.5em;
	border-color: blue;
	border-style: double ;
	border-width: 3px;
}

section
{
	margin-top: 2em;
	margin-left: 17em;
	background-color: black;
	margin-right: 2em;
	padding: 1em;
	border-color: blue;
	border-style: double ;
	border-width: 3px;
}

article > header
{
	font-size: 1.8em;
	text-decoration: underline;
}

footer
{
	margin-top: 2em;
	text-align:center;
}

footer > span
{
	border-color: blue;
	border-style: double ;
	border-width: 3px;
}