-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathex6.css
More file actions
76 lines (70 loc) · 1.17 KB
/
ex6.css
File metadata and controls
76 lines (70 loc) · 1.17 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
/* GLOBAL STYLES
-----------------------------------------*/
html,
body {
height: 100%;
}
body {
padding: 0;
margin: 0;
font-family: "Open Sans", sans-serif;
color: #333333; /* dark, almost black, gray colour */
}
h1,
h2 {
font-family: "Nixie One", serif;
font-weight: 300; /* removes default bold styles */
text-transform: uppercase;
margin: 0; /* removes default space */
}
a {
color: #bf6d50;
text-decoration: none; /* removes default underline */
}
header,
main,
nav {
padding: 20px 30px;
}
main {
clear: both;
}
/* HEADER STYLES
-----------------------------------------*/
header h1 {
font-size: 48px;
}
header h2 {
font-size: 24px;
}
header {
float: left;
}
nav {
float: right;
}
nav a {
padding: 20px;
}
/* HOME PAGE STYLES
-----------------------------------------*/
.home {
background: url(../images/background-6.jpg);
background-position: center center;
background-size: cover;
}
/* ABOUT STYLES
-----------------------------------------*/
.profile-img {
float: left;
margin-right: 20px;
}
blockquote {
clear: both;
padding: 5px 150px;
text-align: center;
}
blockquote p {
font-family: "Pacifico", cursive;
font-size: 30px;
}