-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
90 lines (75 loc) · 1.13 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
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
@font-face {
font-family: "JFドットAyu明朝18";
src: url("JF-Dot-AyuMin18.ttf");
}
html, body {
width: 100%;
color: #fff;
line-height: 1;
font-family: "MS Pゴシック", "Osaka", sans-serif;
margin: 0;
background: url("img/haikei.gif");
background-size: 40px;
display: flex;
background: #000;
}
a {
cursor: pointer;
}
h1 {
margin: 0;
}
h1 a {
color: inherit;
text-decoration: none;
}
h1 a:hover {
text-decoration: underline;
}
p {
margin: 4px;
}
#wrapper {
width: 700px;
margin: auto;
padding: 24px 0;
overflow: hidden;
}
#header {
display: flex;
gap: 8px;
align-items: center;
}
#plane {
color: blue;
}
#access-counter {
display: flex;
align-items: center;
justify-content: center;
}
#access-counter-no {
margin: 0 4px;
}
@media screen and (max-width: 900px) {
#nav {
display: none;
}
main {
margin-left: 0;
}
}
#footer {
color: yellow;
text-align: left;
margin-top: 16px;
animation: footer-marquee 5s linear infinite;
}
@keyframes footer-marquee {
0% {
transform: translateX(0%);
}
50% {
transform: translateX(calc(100% - 210px));
}
}