forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedium.css
More file actions
53 lines (40 loc) · 593 Bytes
/
medium.css
File metadata and controls
53 lines (40 loc) · 593 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
header {
position: fixed;
display: flex;
height: 150px;
width: 100%;
}
.header_left {
width: 30%;
}
header img {
max-height: 120px;
padding-top: 25px;
padding-bottom: 25px;
padding-left: var(--standard-gap-X);
}
nav {
text-align: end;
}
label {
font-size: 40px;
padding-right: 5vw;
}
.hidden_nav {
display: none;
}
.header_right {
width: 100%;
}
.header_right p {
display: grid;
margin-top: 0;
font-style: italic;
font-size: 1.6em;
justify-items: end;
align-items: center;
padding-top: 10px;
}
main {
padding-top: 300px
}