-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (67 loc) · 1.12 KB
/
style.css
File metadata and controls
80 lines (67 loc) · 1.12 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
/* BASE STYLES */
* {
font-family: sans-serif;
font-size: 20px
}
.navbar {
width: 100vw;
background-color: #59D9A1;
padding-left: 30px;
padding-right: 10px;
}
.logo {
display: inline-block;
}
.nav-links {
list-style: none;
}
.nav-item a {
display: inline-block;
padding: 10px 15px;
text-decoration: none;
color: white;
}
.nav-item:hover {
background-color: white;
}
.sidebar p:hover {
background-color: white;
color: #242457;
}
.nav-item:hover a {
color: #59D9A1;
}
.logo img {
width: 15%;
vertical-align: middle;
}
.sidebar {
background-color: #242457;
color: white;
padding: 3rem;
}
footer img {
width: 3%;
}
.flex-main {
background-color: #F5F5F5;
width: 100%;
padding-right: 2.5rem;
}
.image-container{
height: 30vh;
width: 20vw;
background-color: #505FF9;
margin: 2rem;
color: #fff;
border: solid black 1px;
display: flex;
justify-content: center;
align-items: center;
}
footer {
width: 100%;
padding: 1rem;
background-color: #59D9A1;
}
/* CODE YOUR FLEXBOXES HERE */