-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (107 loc) · 1.97 KB
/
style.css
File metadata and controls
122 lines (107 loc) · 1.97 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
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
body {
background-color: #121212;
color: #d4b06c;
font-family: 'Courier New', Courier, monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
margin: 0;
padding: 50px 0;
}
* {
box-sizing: border-box;
}
.sided-prof {
display: flex;
flex-direction: row;
align-items: center;
gap: 30px;
margin-right: 55px;
}
h1 {
font-size: 2rem;
letter-spacing: 2px;
border-bottom: 1px solid #333;
padding-bottom: 10px;
}
.main {
display: flex;
flex-direction: row;
gap: 10px;
align-items: flex-start;
width: 100%;
max-width: 900px;
flex-wrap: wrap;
}
.left {
display: flex;
flex-direction: column;
align-items: stretch;
gap: 20px;
flex: 1 1 300px;
}
.left>div {
margin: 0;
width: auto;
}
.right {
flex: 1 1 300px;
width: auto;
height: auto;
display: flex;
align-items: stretch;
}
.container {
background: #1a1a1a;
border: 1px solid #333;
padding: 20px;
margin: 20px 0;
width: auto;
border-radius: 15px;
text-align: center;
}
.links {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
margin-top: 20px;
}
.links a {
color: #b59a5b;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
margin: 0;
}
a {
color: #b59a5b;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
transition: color 0.3s;
}
a:hover {
color: #f1d592;
text-decoration: underline;
}
.site-link {
display: flex;
align-items: center;
gap: 12px;
color: #d4b06c;
text-decoration: none;
font-size: 1rem;
transition: transform 0.2s, color 0.2s;
}
.site-link img {
width: 20px;
height: 20px;
filter: invert(82%) sepia(21%) saturate(833%) hue-rotate(351deg) brightness(89%) contrast(85%);
}
.site-link:hover {
color: #f1d592;
transform: translateX(5px);
}