-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (49 loc) · 872 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
body{
background-color: darkgrey;
font-size: 18px;
font-family: 'Gill Sans', 'Gill Sans MT', 'Calibri', 'Trebuchet MS', sans-serif;
}
main{
display: flex;
}
section{
display: flex;
flex-direction: column;
}
.sidenav{
margin: 10px;
background-color: aliceblue;
min-width: 200px;
}
h1{
align-items: center;
border-bottom: 3px;
color: red;
font-size: 16px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-transform: uppercase;
}
article {
flex: 1
}
article:nth-of-type(3) {
flex: 2;
}
.flexContainer{
display: flex;
background-color: bisque;
}
.flexGrowContainer{
display: flex;
align-items: stretch;
background-color: blueviolet;
}
a{
color: red;
}
a:hover{color: blue;}
img {
border: 1px solid red;
padding: 10px 250px;
opacity: 0.5;
}