-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
101 lines (91 loc) · 2.18 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
:root {
--background: #2a2a2a;
--fontcolor: #27efc1;
--button-bg: #333333;
--username-color: #7e00ff;
--icon-size: 30px;
--button-radius: 22px;
--button-padding: 12px 20px;
--button-margin: 10px 0;
--button-width: 80%;
--button-max-width: 360px;
--button-hover-translate: -3px;
--button-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
--button-hover-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
--media-query-width: 768px;
--transition-time: 0.5s;
}
body,
html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: Arial, sans-serif;
background-color: var(--background);
color: var(--fontcolor);
text-align: center;
}
.profile-photo {
border-radius: 100%;
width: 175px;
margin-top: 20px;
margin-bottom: 10px;
}
h1 {
font-size: 2em;
color: var(--username-color);
margin-bottom: 5px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
.social-links {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.social-button {
background-color: var(--button-bg);
font-size: 1.2em;
color: #27efc1;
border: none;
border-radius: var(--button-radius);
padding: var(--button-padding);
margin: var(--button-margin);
width: var(--button-width);
max-width: var(--button-max-width);
text-decoration: none;
display: flex;
align-items: center;
justify-content: flex-start;
box-shadow: var(--button-shadow);
position: relative;
overflow: hidden;
transition: var(--transition-time);
text-align: center;
}
.social-button img {
height: var(--icon-size);
margin-right: 15px;
}
.social-button span {
flex-grow: 1;
text-align: center;
margin-right: 35px;
}
.social-button:hover {
transform: translateY(var(--button-hover-translate));
box-shadow: var(--button-hover-shadow);
transition: var(--transition-time);
}
@media (max-width: var(--media-query-width)) {
.social-button {
width: 90%;
}
}