-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
142 lines (128 loc) · 2.22 KB
/
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
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
@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600");
body {
margin: 0;
padding: 0;
overflow: hidden;
}
.background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #e5ebf1;
background: linear-gradient(
to bottom,
rgb(10, 10, 44) 0%,
rgb(4, 4, 26) 50%,
#000 100%
);
}
.pentahedron {
position: absolute;
width: 100%;
height: 100%;
fill: #3e82f7;
}
.point {
fill: #444444;
}
.rhombus {
fill: #2da94f;
stroke: #2da94f;
}
.x {
fill: #fdbd00;
}
.circle {
fill: #ed412d;
}
.line {
fill: #7b46fe;
}
svg {
display: block;
width: 30px;
height: 30px;
position: absolute;
top: 40%;
transform: translateZ(0px);
}
.title {
z-index: 10;
font-family: "Montserrat";
text-align: center;
width: 60%;
}
.title h1 {
z-index: 10;
position: absolute;
left: 50%;
top: 46%;
transform: translateX(-50%) translateY(-50%);
font-weight: 900;
font-size: 100px;
font-style: italic;
padding: 0;
margin: 0;
line-height: 1;
text-shadow: #fc0 2px 2px 2px;
}
.title #logo {
z-index: 5;
position: absolute;
left: 50.5%;
top: 46%;
transform: translateX(-50%) translateY(-50%);
width: 20em;
border-radius: 10em;
opacity: 0.7;
filter: brightness(5);
}
.title h3 {
z-index: 10;
position: absolute;
left: 50%;
top: 77%;
transform: translateX(-50%) translateY(-50%);
font-weight: 500;
font-size: 20px;
padding: 0;
margin: 0;
line-height: 2;
letter-spacing: 2px;
}
.anim-text {
background-image: linear-gradient(92deg, #fff, #feab3a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: hue 10s infinite linear;
}
.anim-text2 {
background-image: linear-gradient(92deg, #000, #feab3a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: hue 10s infinite linear;
}
@keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(360deg);
}
}
.contact {
position: absolute;
left: 50%;
top: 93%;
transform: translateX(-50%) translateY(-50%);
font-family: "Montserrat";
text-align: center;
width: 60%;
color: #ccc;
}
.contact a {
text-decoration: none;
color: #567cbe;
}