-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
88 lines (82 loc) · 1.63 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
*{
margin: 0;
padding: 0;
}
body{
background: linear-gradient( rgba(0, 0, 0, 0.411), rgba(0, 0, 0, 0.411) ), url(./images/backgroundpic.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
height: 100vh;
background-position: top center;
font-family: 'Lato', sans-serif;
}
.headPart{
width: 100%;
height: 100px;
display: flex;
justify-content: center;
}
.headPart .vikaLogo{
position: absolute;
left: 0;
text-align: right;
height: 120px;
width: auto;
overflow: hidden;
margin: 10px 80px;
transform: scale(2.6);
}
.headPart .presLogo{
position: absolute;
right: 0;
text-align: right;
height: 120px;
width: auto;
}
.picoData{
text-align: center;
margin-left: 10px;
margin-right: 10px;
}
.picoData h1{
color: #f7ffff;
text-align: center;
font-size: 60px;
height: auto;
margin: 20px 0px;
width: 100%;
}
.picoData h2{
color: #f7ffff;
text-align: center;
font-size: 19px;
height: auto;
margin: 20px 0px;
width: 100%;
}
.picoData span{
color: rgb(255, 27, 27);
animation: blinkText 2s infinite;
animation-timing-function: ease-in-out;
}
@keyframes blinkText {
0%{
opacity: 0;
}
50%{
opacity: 1;
}
100%{
opacity: 0;
}
}
.cc p{
bottom: 10px;
font-weight:300;
font-size: 24px;
color: #e8ffff;
text-align: center;
margin: 20px 0px;
}