-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvita.css
More file actions
56 lines (45 loc) · 750 Bytes
/
vita.css
File metadata and controls
56 lines (45 loc) · 750 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
54
55
56
:root {
--linkedin: f08c;
--website: f0ac;
--github: f092;
--email: f199;
--tag: f02b;
--graduate: f501;
--professional: f508;
--briefcase: f0b1;
--laptop-code: f5fc;
--star: f005;
}
body {
display: flex;
min-height: 100vh; /*Might need to remove this later*/
}
aside {
width: 20vw;
background-color: lightgrey;
display: flex;
flex-flow: column;
align-items: center;
}
main {
flex: 1;
padding: 1vw;
}
img{
max-width:150px;
display: block;
height: auto;
border-radius: 50%;
border-color: black;
border-style: solid;
padding : 2px;
margin: 0px;
}
figcaption{
text-align: center;
display: none;
}
@media screen{
}
@media print{
}