-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (69 loc) · 1020 Bytes
/
styles.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
body {
margin: 0;
}
/* Typography */
html {
font-family: 'Roboto', sans-serif;
}
@media (min-width: 576px) {
html {
font-size: 14px;
}
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
@media (min-width: 992px) {
html {
font-size: 18px;
}
}
@media (min-width: 1200px) {
html {
font-size: 20px;
}
}
.icons-social i {
font-size: 3em;
}
/* Custom Styles */
main {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
padding: 0 30px;
text-align: center;
}
main > .intro {
font-family: 'Reem Kufi', sans-serif;
font-size: 3.75em;
font-weight: 600;
}
main > .tagline {
font-size: 1.5rem;
margin: 1.5rem 0;
font-weight: 100;
}
main > .centered-img {
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
}
.icons-social i {
padding: 10px;
}
/* Theme */
main {
background: #BB6BD9;
color: #FAFAFA;
}
.icons-social a {
color: #FAFAFA;
}
.icons-social a svg path{
fill: #FAFAFA;
}