-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
85 lines (76 loc) · 1.43 KB
/
index.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
body
{
background-color:#CCDEE7;
width: 100%;
height: 100%;
margin: 0;
}
div.maindiv
{
height: 100vh;
margin: 0;
background-image: url("img_stork.png");
background-position: bottom left;
background-repeat: no-repeat;
background-size: calc(44vw);
}
div.context
{
margin-left: 39vw;
margin-right: 1vw;
margin-top: 4vh;
margin-bottom: 0;
height: 70vh;
width: 60vw;
}
.context
{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: min(2.5vh, 2.5vw);
text-align: center;
overflow: hidden;
}
div.socials
{
display: flex;
overflow: hidden;
margin-left: 39vw;
margin-right: 1vw;
margin-top: 0;
margin-bottom: 4vh;
height: 10vh;
width: 60vw;
}
img.button_social
{
margin-left: calc(5vw - min(4vh, 4vw));
margin-right: calc(5vw - min(4vh, 4vw));
margin-top: calc(5vh - min(4vh, 4vw));
margin-bottom: calc(5vh - min(4vh, 4vw));
height: min(8vh, 8vw);
width: min(8vh, 8vw);
filter: brightness(0%);
transition: ease 0.3s;
}
img.button_social:hover
{
filter: brightness(100%);
}
#title
{
font-family: "Macondo", sans-serif;
font-size: 8vh;
font-weight: 900;
text-align: center;
margin: 0%;
color: darkblue;
}
#subtitle
{
font-family: "Macondo", sans-serif;
font-size: 4vh;
font-weight: 400;
text-align: center;
margin: 0;
color: darkblue;
}