-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (92 loc) · 1.78 KB
/
Copy pathstyle.css
File metadata and controls
110 lines (92 loc) · 1.78 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
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
background: black;
}
body {
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 20px 15px;
text-align: center;
font-family: "Zen Kaku Gothic New", sans-serif;
color: white;
overflow-wrap: break-word;
}
img {
max-width: 100%;
height: auto;
vertical-align: middle;
}
h1 {
margin-bottom: 20px;
font-size: clamp(24px, 6vw, 48px);
}
.description {
font-weight: 400;
font-size: clamp(0.9rem, 2.5vw, 1.2rem);
margin-top: 15px;
}
.profile {
margin-bottom: 20px;
}
.profile-img {
width: clamp(100px, 20vw, 150px);
height: clamp(100px, 20vw, 150px);
border-radius: 50%;
object-fit: cover;
}
.sns a {
display: inline-block;
margin: 10px 15px;
text-decoration: none;
border-radius: 4px;
transition: box-shadow 0.2s ease-in-out;
}
.sns a:focus-visible {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}
.sns-icon-x {
width: clamp(17px, 6vw, 30px);
height: auto;
}
.sns-icon-note {
width: clamp(43px, 10vw, 75px);
height: auto;
}
.sns-icon-github {
width: 30px;
height: auto;
}
.sns-icon-discord {
width: 30px;
height: auto;
}
.btn-rect {
display: inline-block;
padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
background: white;
color: black;
text-decoration: none;
font-size: clamp(14px, 3vw, 16px);
border-radius: 8px;
transition: opacity 0.2s ease-in-out;
}
.btn-rect:hove5r {
opacity: 0.8;
}
@media (max-width: 480px) {
body {
padding: 15px 10px;
}
.sns a {
margin: 8px 10px;
}
}
a {
color: white;
}