-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (69 loc) · 1.57 KB
/
style.css
File metadata and controls
79 lines (69 loc) · 1.57 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
html,
body {
margin: 0;
padding: 0;
background-color: #000;
color: #c9d1d9;
}
:root {
--font-main: 'Noto Sans', sans-serif;
--main-bg: #000;
--profile-bg: #0d1117;
--profile-color: #c9d1d9;
--profile-img-border: #2e343b;
--username-font-color: #8b949e;
--username-font-weight: 400;
--btn-bg: #21262d;
--btn-color: #c9d1d9;
--btn-bg-hover: #30363d;
--btn-border: #373b43;
--btn-border-hover: #8c949e;
}
.profile-container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: var(--main-bg);
}
.profile-content {
background-color: var(--profile-bg);
font-family: var(--font-main);
color: var(--profile-color);
padding: 20px;
width: 70%;
min-width: 250px;
max-width: 400px;
border-radius: 5px;
}
.profile-content img {
max-width: 100%;
border-radius: 50%;
border: 1px solid var(--profile-img-border);
}
.profile-details {
width: 100%;
margin-top: 10px;
}
.profile-details button {
width: 100%;
background-color: var(--btn-bg);
border: 1px solid var(--btn-border);
color: var(--btn-color);
border-radius: 5px;
padding: 3px 0;
font-family: inherit;
}
.profile-details button:hover {
background-color: var(--btn-bg-hover);
border-color: var(--btn-border-hover);
}
.profile-details h2,.profile-details h3 {
margin-top: 0;
margin-bottom: 0;
}
.profile-details h3 {
color: var(--username-font-color);
font-weight: var(--username-font-weight);
}