-
Notifications
You must be signed in to change notification settings - Fork 0
/
header_style.css
50 lines (44 loc) · 929 Bytes
/
header_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
@import url("fonts.css");
body {
margin: 0;
padding: 0;
background-color: #FAFAFA;
text-align: center;
}
.flex-container-header {
justify-content: center;
display: -webkit-flex;
display: flex;
width: auto;
height: auto;
background-color: #99dde7;
}
.flex-item-header {
width: auto;
height: 50px;
margin: 10px;
}
h1 {
font-family: 'Sansita Swashed', cursive;
color: black;
font-size: 2rem;
line-height: 0rem;
margin-top: calc((1.5rem - 2rem) + 2.0rem);
margin-bottom: 0.5rem;
}
@media screen and (max-width: 855px) {
h1 {
font-size: 2.5rem;
line-height: 2.5rem;
margin-top: calc((1.5rem - 2rem) + 2rem);
margin-bottom: 1.5rem;
}
}
@media screen and (max-width: 510px) {
h1 {
font-size: 2rem;
line-height: 2rem;
margin-top: calc((1.5rem - 2rem) + 1.5rem);
margin-bottom: 1.5rem;
}
}