This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
148 lines (124 loc) · 2.06 KB
/
main.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import url('https://fonts.googleapis.com/css?family=Roboto|Source+Sans+Pro:700');
:root {
--black: #333;
--green: #69b93b;
}
html {
box-sizing: border-box;
font-size: 62.5%;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
font-family: 'Roboto', Verdana, Geneva, Tahoma, sans-serif;
color: var(--black);
line-height: 1.6;
font-size: 1.7rem;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Source Sans Pro', Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
font-size: 4rem;
text-align: center;
}
a {
color: var(--green)!important;
text-decoration: none;
}
a:visited, a:active, a:hover {
color: inherit;
}
.container {
width: 70%;
margin: 0 auto;
}
main {
display: flex;
justify-content: space-between;
}
.about {
width: 60%;
}
.specifics {
width: 30%;
}
.specifics > div i {
margin-right: 1.5rem;
line-height: 1.6;
}
.specifics__when {
margin-bottom: 3rem;
}
.specifics__where {
display: flex;
justify-content: flex-start;
}
.specifics__where, .specifics__when {
display: flex;
}
.specifics__where p, .specifics__when p {
margin: 0;
}
.bold {
font-weight: bold;
}
a.cta-register {
padding: 1rem;
border: .2rem solid var(--green);
color: var(--green);
text-transform: uppercase;
margin-top: 2rem;
display: inline-block;
font-weight: 600;
}
.logo-container {
width: 100%;
}
.logo-container img {
max-width: 100%;
}
.data-title {
margin-top: 4rem;
}
@media only screen and (max-width: 1050px) {
h1 {
margin-bottom: .4rem;
}
.container {
width: 90%;
}
main {
flex-direction: column;
justify-content: center;
}
.specifics {
display: flex;
width: 100%;
flex-direction: row-reverse;
justify-content: space-evenly;
align-items: center;
}
.specifics > div {
flex-basis: 40%;
flex-grow: 0;
}
a.cta-register {
margin-bottom: 2rem;
}
.about {
width: 100%;
margin-top: 2rem;
}
.specifics__when {
margin-bottom: 2rem;
}
}
@media only screen and (max-width: 640px) {
body {
font-size: 1.4rem;
}
}