forked from MultiverseLearningProducts/Flexible-Mock-Magic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (109 loc) · 1.96 KB
/
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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* BASE STYLES */
* {
font-family: sans-serif;
font-size: 20px
}
.navbar {
width: 100vw;
background-color: #59D9A1;
padding-left: 30px;
padding-right: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.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;
display: flex;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: baseline;
flex-wrap: wrap;
}
footer img {
width: 3%;
}
.flex-main {
background-color: #F5F5F5;
width: 100%;
padding-right: 2.5rem;
display: flex;
}
.image-container{
height: 30vh;
width: 20vw;
background-color: #505FF9;
margin: 2rem;
color: #fff;
border: solid black 1px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.main-content{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
footer {
width: 100%;
padding: 1rem;
background-color: #59D9A1;
display: flex;
flex-direction: row;
flex-wrap: wrap;
flex-shrink: 3;
justify-content: space-around;
align-items: baseline;
}
.nav-links{
display: flex;
flex-direction: row;
justify-content: flex-end;
gap: 20px;
}
.flex-main {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.main-content {
display: flex;
flex-wrap: wrap;
}
.sidebar {
display: flex;
flex-direction: column;
justify-content: space-evenly;
}