forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (81 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (81 loc) · 1.44 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*Universal Styles*/
body {
background-color: #f5eee0;
color: #202020;
font-family: 'Gill Sans', Arial, Helvetica, sans-serif;
font-size: 16px;
}
h1, h2, h3 {
font-family: 'Bungee', Arial, Helvetica, sans-serif;
}
h1 {
font-size: 3rem;
font-weight: bold;
text-align: center;
color: #8C4CF7;
margin-bottom: 40px;
}
h2 {
font-size: 1.5rem;
margin-top: 40px;
}
h3 {
color:#8C4CF7;
font-size: 1.25rem;
}
p {
line-height: 24px;
}
.intro p {
text-align: center;
margin-bottom: 60px;
}
/*Header Styles*/
.header {
background-color: #202020;
background-image: url(./images/twitch-header.png);
height: 160px;
background-position: center center;
background-repeat: no-repeat;
padding: 20px;
text-align: center;
}
.header .logo {
position: absolute;
margin-top: 10px;
margin-left: 110px;
}
.header nav {
float: right;
}
.header .navigation li {
margin-top: -5px;
padding: 10px;
}
.header .navigation li a {
list-style-type: none;
text-decoration: none;
color: #f5eee0;
font-weight: bold;
}
.header .navigation li a.active,
.header .navigation li a.hover {
border-bottom: 2px solid #8C4CF7;
}
/*Main Styles*/
article:first-child {
width: 60%;
margin: auto;
}
main .container {
display: flex;
flex-direction: row;
margin: 40px 60px;
}
.content {
width: 50%;
padding: 20px;
}
.content-pic {
margin-left: 250px;
}