-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (67 loc) · 1.03 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
html, body {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
background: linear-gradient(to bottom right, #030C22, #20293F);
color: #e9f0f9;
display: flex;
flex-direction: column;
font-family: "Source Sans Pro", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
min-height: 100%;
text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1em;
margin: 0 0 0.2em;
}
h1 {
font-size: 32px;
}
p {
margin: 0 0 0.33em;
}
ul {
padding: 0;
margin: 0;
}
a {
color: #609ff9;
text-decoration: none;
}
.intro-container {
align-items: center;
display: flex;
flex-grow: 1;
justify-content: center;
padding: 20px;
}
.intro {
max-width: 50%;
}
.intro p {
font-size: 24px;
font-weight: 300;
}
.contact {
font-size: 13px;
font-weight: 400;
list-style: none;
}
.contact > li {
display: inline;
margin-right: 12px;
}
@media (max-width: 800px) and (min-width: 481px) {
.intro {
max-width: 75%;
}
}
@media (max-width: 480px) {
.intro {
max-width: inherit;
}
}