-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (62 loc) · 1.48 KB
/
style.css
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
/* プロフ画像関連 */
.profile {
display: flex;
padding-top: 10vh;
justify-content: center;
align-items: center;
}
.profile img {
width: 80%;
max-width: 256px;
border: 5px #7086bd solid;
border-radius: 100%;
}
/* リンク集関連 */
.links-container {
display: flex;
width: 100%;
justify-content: center;
}
.links {width: 100%;max-width: 600px;}
.sns {display: flex;align-items: center;}
.snsTitle {font-size: 1.4rem;font-weight: bold;}
.sns > .icon {margin-right: 3vw;}
.sns-container {color: var(--bulma-body-color);}
summary::maker{
margin-right: 3vw;
}
summary{
margin-bottom: 3vh;
}
/* フッター関連 */
.footer-link {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
}
.footer-link a {
margin-top: 2vh;
padding: 0 2vw 0 2vw;
border-right: 2px hsl(0, 0%, 86%) solid;
}
.footer-link a:first-child {
border-left: 2px hsl(0, 0%, 86%) solid;
border-right: 2px hsl(0, 0%, 86%) solid;
}
/* Light Only */
@media (prefers-color-scheme: light) {
/* 背景のグラデーション */
body {
background: linear-gradient(-45deg, #f9c2eb, #a8c2ee, #c2f9d0, #ffdea5) fixed;
background-size: 800% 800%;
animation: GradietionAnimation 9s ease infinite;
}
@keyframes GradietionAnimation {
0% {background-position: 0% 50%;}
50% {background-position: 100% 50%;}
100% {background-position: 0% 50%;}
}
}