-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.css
More file actions
78 lines (69 loc) · 1.75 KB
/
common.css
File metadata and controls
78 lines (69 loc) · 1.75 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
body {
overscroll-behavior: none;
background-size: cover;
background-position: center right;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #102D3B;
background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://keishispl.github.io/img/wallpaper/self_drawn.png');
color: #cecfd0;
font-weight: normal;
margin: 0;
align-items: center;
justify-content: center;
text-align: center;
overflow-x: hidden;
font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', sans-serif;
}
::-moz-selection {
color: white;
background: rgba(160, 131, 217, 0.22);
}
::selection {
color: white;
background: rgba(160, 131, 217, 0.22);
}
a {
cursor: pointer;
text-decoration: none;
color: var(--link-color);
font-size: 16px;
}
#nav {
display: flex;
align-items: center;
width: 100%;
height: 100px;
margin-bottom: 25px;
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
backdrop-filter: blur(2.5px);
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
#nav>p {
margin-left: 30px;
padding: 0px;
font-size: 32px;
text-align: left;
user-select: none;
-moz-user-select: none;
font-weight: bold;
line-height: 3em;
}
#nav>p>a {
text-decoration: none;
color: #cecfd0;
transition: filter 0.2s, text-shadow 0.2s;
font-size: 32px;
&:hover {
filter: brightness(115%) saturate(120%);
text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}
}
@media screen and (max-width: 880px) {
#nav>p, #nav>p>a {
font-size: 24px;
}
}
#main {
width: 100vw;
}