-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
119 lines (102 loc) · 1.74 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;900&display=swap');
* {
margin: 0;
padding: 0;
font-size: 22px;
transition: height .2s, width .2s, font-size .2s;
}
a {
text-decoration: none;
color: unset;
}
html,
body {
height: 100%;
}
h1,
h2,
p {
font-family: 'Inter', sans-serif;
color: #f0f0f0;
text-align: center;
}
h1 {
font-size: 76px;
font-weight: 900;
text-align: center;
}
h2 {
font-weight: 500;
}
main {
height: 100%;
width: 100%;
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
body::before {
content: " ";
position: absolute;
height: 100%;
width: 100%;
background: linear-gradient(rgba(18, 16, 16, 0) 65%,
rgba(0, 0, 0, 0.25) 65%),
linear-gradient(90deg,
rgba(255, 0, 0, 0.06),
rgba(0, 255, 0, 0.02),
rgba(0, 0, 255, 0.06));
z-index: 10;
background-size: 100% 12px, 10px 100%;
pointer-events: none;
}
.social-buttons {
margin-top: 80px;
width: 400px;
display: inline-flex;
justify-content: space-between;
}
.link:hover {
text-decoration: underline;
}
.social-button {
height: 68px;
width: 68px;
display: inline-flex;
justify-content: center;
align-items: center;
float: left;
margin-bottom: 10px;
border-radius: 100%;
color: #fff;
transition: box-shadow 0.3s;
}
.logo {
height: 50px;
width: 50px;
}
.social-button:hover {
box-shadow: 0 0 32px #445, 0 0 32px #445;
transform: translateY(0) rotate(0deg);
}
@media only screen and (max-width: 900px) {
h1 {
font-size: 36px;
}
h2 {
font-size: 20px;
}
h1,
h2 {
margin: 4px;
}
.social-buttons {
width: 340px;
}
.social-button {
height: 64px;
width: 64px;
}
}