-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
59 lines (52 loc) · 1.09 KB
/
index.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
.home-section {
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: center;
flex-grow: 1;
}
.home-section .img-wrapper {
flex-grow: 1;
flex-direction: row;
display: flex;
align-items: stretch;
justify-content: center;
margin-top: 5%;
}
.home-section .me-image {
background-image: url(images/me.png);
flex-grow: 1;
min-height: 30vh;
min-width: 10vh;
background-size: contain;
background-repeat: no-repeat;
background-position: center top;
}
.home-section .home-text {
flex-grow: 1;
text-align: center;
margin-top: 1.5rem;
margin-bottom: 0;
}
.home-section .welcome {
font-weight: 300;
font-size: 2em;
margin-bottom: 1.5rem;
margin-top: 0;
text-align: center;
}
.home-section .subtitle {
font-weight: 400;
font-size: 1.5rem;
margin-bottom: 1rem;
text-align: center;
}
.home-section .icon-wrapper {
flex-grow: 1;
flex-direction: row;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0%;
margin-bottom: 10%;
}