-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.css
70 lines (64 loc) · 993 Bytes
/
base.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
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
-webkit-scroll-behavior: smooth;
}
body {
margin: 0 auto;
width: 100%;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
font-size: 16px;
}
ul {
list-style: none;
}
header {
position: relative;
width: 100%;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
min-height: 30vh;
}
header h1,
header h2 {
width: 100%;
text-align: center;
}
header h1 {
font-size: 3em;
}
header h2 {
font-size: 2em;
}
section#intro {
display: flex;
justify-content: flex-start;
align-items: flex-start;
height: 500px;
}
h3 {
text-transform: uppercase;
font-size: 1.5em;
}
h3.intro {
display: none;
position: absolute;
opacity: 0;
}
article.aboutme {
display: flex;
justify-content: center;
align-items: center;
flex-flow: column;
text-align:center;
height: 90vh;
}