This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinksStyle.css
135 lines (117 loc) · 2.21 KB
/
linksStyle.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
/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
--font: 'Karla', 'Karla', sans-serif;
}
body {
background-image: url("assets\\dark banner.png");
}
#userPhoto {
height: 96px;
margin-bottom: 1px !important;
display: block;
margin: 35px auto 20px;
/*-webkit-box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1);
-moz-box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1);
box-shadow: 0px 6px 0px 0px rgba(222, 218, 162, 1);*/
transition: all 0.15s;
}
#userPhoto:hover {
box-shadow: 0px 8px rgba(222, 218, 162, 1);
transform: translateY(-2px);
}
#userPhoto:active {
box-shadow: 0px 0px black;
transform: translateY(6px);
}
#userName {
color: white;
font-size: 1rem;
font-weight: 600;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
}
#links {
max-width: 675px;
width: auto;
display: block;
margin: 27px auto;
}
.footer {
color: white;
font-size: 1;
font-weight: 300;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
}
@media only screen and (max-width: 700px) {
#links {
margin-left: 3%;
margin-right: 3%;
}
.night_mode {
margin-right: 40%;
}
}
.link {
display: block;
background-color: #d6ad16;
color: #fff;
font-family: var(--font);
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
font-weight: bold;
transition: all 0.15s;
box-shadow: 0px 6px #7e650c;
}
.link:hover {
/* background: #019489; */
box-shadow: 0px 8px #7e650c;
transform: translateY(-2px);
}
.link:active {
transform: translateY(6px);
box-shadow: 0px 0px #7e650c;
}
#proker {
max-width: 300px;
width: auto;
display: grid;
margin: 27px auto;
}
.footer {
text-align: center;
font-size: 1.3rem;
}
.footer a {
text-decoration: none;
}
.media {
background: #DD5A79;
width: 38px;
height: 38px;
text-align: center;
color: white;
margin-bottom: 40px;
box-shadow: 0px 6px #9E4355;
transition: all 0.15s;
}
.media:hover {
box-shadow: 0px 8px #9E4355;
transform: translateY(-2px);
}
.media:active {
transform: translateY(6px);
box-shadow: 0px 0px #9E4355;
}