blob: 1726af11d01fe6f093ebd313601e18d2f1e3343e (
plain)
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
|
#particles-js {
background: $main;
display: flex;
vertical-align: bottom;
width: 100%;
min-height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
.particles-js-canvas-el {
width:100% !important;
height:100vh !important;
}
}
.header {
z-index: 1;
text-align: center;
color:#FFF;
position: absolute;
top: 50%;
left: 50%;
margin: 0 auto;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
.site-title {
font-size: 50px;
display: block;
line-height: 1;
color: #FFF;
@media only screen and (min-width:$cut){
margin: 0;
font-size: 100px;
}
}
.site-description {
font-size: 20px;
display: block;
line-height: 1;
color: #FFF;
margin-top: 10px;
@media only screen and (min-width:$cut){
font-size: 40px;
}
}
}
.header-links {
margin: 10px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
.link {
color: #FFF;
text-decoration: none;
font-size: 15px;
margin: 5px 0;
@media only screen and (min-width:$cut){
font-size: 20px;
}
}
}
.header-icons {
display: flex;
justify-content: center;
text-align: center;
.icon {
text-align: center;
color: #FFF;
width: 20px;
height: 20px;
font-size: 20px;
padding: 10px;
margin: 5px;
border-radius: 50%;
border: 2px solid #FFF;
transition: all .7s;
&:hover {
color: $main;
background: #FFF;
}
&:active {
color: $main;
background: #FFF;
}
@media only screen and (min-width:$cut) {
width: 35px;
height: 35px;
font-size: 35px;
}
}
}
.down {
color: #FFF;
position: absolute;
bottom: 25px;
width: 100%;
margin: 0 auto;
display: block;
text-align: center;
font-size: 30px;
cursor: pointer;
.icon {
position: absolute;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
fill: #fff;
-webkit-animation: pulse 1.3s infinite;
animation: pulse 1.3s infinite;
&:hover {
color: $sec;
}
&:active {
color: $sec;
}
}
}
|