-
Notifications
You must be signed in to change notification settings - Fork 0
/
teststyle.css
99 lines (87 loc) · 1.47 KB
/
teststyle.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
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
@font-face {
font-family: "shfont";
src: url("./font/shfont.woff") format("woff");
}
body {
background-color: #0D1117;
font-family: "shfont", "源ノ角ゴシック", "游ゴシック", system-ui;
color: white;
}
.downline {
border-bottom: solid 3px white;
}
/*
h3.downline {
border-bottom: solid 3px white;
} */
.round {
border-radius: 6px;
background-color: #0078D4;
color: white;
min-height: 42px;
height: auto;
box-shadow: none;
text-align: center;
font-weight: 700;
cursor: pointer;
font-family: "shfont";
border: none;
}
header {
display: flex;
width: 99%;
height: 100px;
background-color: rgba(112, 128, 144, 0.4);
align-items: center;
border-radius: 6px;
position: fixed;
backdrop-filter: blur(6px);
}
.title {
margin-right: auto;
color: white;
}
.menu-item {
list-style: none;
display: inline-block;
padding: 10px;
}
.msitem {
color: white;
}
.gotop {
border-radius: 6px;
display: block;
width: 60px;
height: 60px;
box-sizing: border-box;
background: rgba(112, 128, 144, 0.4);
padding-top: 30px;
text-align: center;
letter-spacing: -1px;
font-size: 85%;
text-decoration: none;
color: white;
opacity: 0.5;
position: fixed;
bottom: 20px;
right: 20px;
z-index: 10000;
}
.gotop::before {
content: "";
display: block;
border-top: 2px solid white;
border-right: 2px solid white;
width: 25%;
height: 25%;
top: 45%;
left: 0;
right: 0;
margin: auto;
position: absolute;
transform: rotate(-45deg);
}
html {
scroll-behavior: smooth;
}