-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (90 loc) · 1.7 KB
/
style.css
File metadata and controls
106 lines (90 loc) · 1.7 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
body{
background-color: #2d3628;
}
a {
color: #fff;
}
@media (max-width: 768px) {
.music_content {
flex-direction: column;
align-items: center;
}
.music_content iframe {
width: 100%;
margin-bottom: 10px;
}
}
.content {
display: flex;
flex-direction: column;
min-height: 100vh;
max-width: 800px;
margin: auto;
padding: 40px;
background-color: #4a5942;
border-left: 1px solid #8c9284;
border-top: 1px solid #8c9284;
border-bottom: 1px solid #292c21;
border-right: 1px solid #292c21;
}
.text {
text-align: center;
margin-top: auto;
margin-bottom: auto;
font-size: 18px;
line-height: 1.6;
}
.imagecontent {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
}
.imagebox {
display: flex;
justify-content: center;
background-color: #3e4637;
width: 200px;
height: 200px;
border-right: 1px solid #8c9284;
border-bottom: 1px solid #8c9284;
border-top: 1px solid #292c21;
border-left: 1px solid #292c21;
}
.yt{
background-image: url(assets/youtube.svg);
}
.x{
background-image: url(assets/twitter.svg);
}
.gh{
background-image: url(assets/github.svg);
}
.r{
background-image: url(assets/reddit.svg);
}
.links a{
width: 50px;
height: 50px;
background-size: 25px;
background-repeat: no-repeat;
background-position: center;
}
.links {
display: flex;
justify-content: space-evenly;
margin-top: 20px;
}
header {
font-size: 24px;
margin-bottom: 10px;
}
footer {
text-align: center;
font-size: 16px;
margin-top: 10px;
}
::selection {
background-color: #958831;
color: #fff;
}