-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (57 loc) · 836 Bytes
/
style.css
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
* {
box-sizing: border-box;
}
html {
background-color: blue;
font-size: 16px;
}
body {
background-color: green;
}
a {
color: white;
font-size: x-large;
margin: 0 5px;
}
nav {
box-shadow: 0 0 12px -2px black;
position: fixed;
left: 0;
right: 0;
align-items: center;
background-color: red;
color: bisque;
display: flex;
height: 80px;
padding: 30;
display: flex;
justify-content: space-between;
}
h1 {
color: white;
font-size: xxx-large;
}
main {
min-height: 100vh;
padding: 85px 24px 96px;
box-shadow: 0 0 12px -2px white;
color: white;
font-size: 25px;
}
h2 {
font-size: xxx-large;
}
section {
display: flex;
align-items: flex-start;
}
section p {
flex: 1;
margin-right: 20px;
font-size: 30px;
height: auto;
}
.image-right img {
max-width: 600px;
height: auto;
}