-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (76 loc) · 1.52 KB
/
style.css
File metadata and controls
91 lines (76 loc) · 1.52 KB
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
body {
background-color: #303942 !important;
font-family:Verdana,sans-serif;
font-size:15px;
line-height:1.5;
padding-right: 15px;
padding-left: 15px;
}
.container {
width: 100%;
height: 100%;
margin-right: auto;
margin-left: auto;
}
.header {
text-align: center;
}
.avatar {
border-radius: 50%;
border: 5px solid #f9ae57 !important;
margin-top: 16px;
width: 250px;
height:200px;
}
.name {
margin-top: 15px !important;
color: #d8dee9 !important;
font-weight: bolder;
font-size: large;
}
.description {
font-weight: bold;
color: #a6acb9;
}
.links-container {
display: flex;
flex-direction: column;
jusify-content: center;
align-items: center;
margin-top: 45px !important;
}
.icons {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 8px;
}
/* Filter values via https://angel-rs.github.io/css-color-filter-generator/ */
.icon {
width: 35px;
filter: brightness(0) saturate(100%) invert(57%) sepia(55%) saturate(355%) hue-rotate(169deg) brightness(80%) contrast(91%);
}
.icon:hover {
filter: brightness(0) saturate(100%) invert(57%) sepia(55%) saturate(355%) hue-rotate(169deg) brightness(100%) contrast(91%);
}
.disclaimer {
color: #707275 !important;
text-align: center;
}
.disclaimer > a:visited {
color: #5c5e60;
}
@media screen and (min-width: 576px) {
.container {
max-width: 540px;
}
.name {
font-size: x-large;
}
.description {
font-size: large;
}
.icon {
width: 45px;
}
}