Skip to content

Commit aeb23d6

Browse files
authored
Create style.css
1 parent 1dea29e commit aeb23d6

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

style.css

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
body {
2+
font-family: "Inter", "Noto Sans JP", sans-serif;
3+
background: #0a0a0a;
4+
color: #d8d8d8;
5+
line-height: 1.8;
6+
padding: 2em 10%;
7+
}
8+
9+
h1, h2, h3, h4 {
10+
color: #80ffb4;
11+
text-shadow: 0 0 4px #2aff80;
12+
border-bottom: 1px solid #333;
13+
padding-bottom: 0.3em;
14+
}
15+
16+
h1 {
17+
font-size: 2em;
18+
margin-top: 1em;
19+
}
20+
21+
h2 {
22+
font-size: 1.5em;
23+
margin-top: 1.2em;
24+
}
25+
26+
a {
27+
color: #74f5a1;
28+
text-decoration: none;
29+
border-bottom: 1px dotted #74f5a1;
30+
}
31+
32+
a:hover {
33+
color: #c0ffc8;
34+
border-bottom: 1px solid #c0ffc8;
35+
}
36+
37+
blockquote {
38+
border-left: 4px solid #74f5a1;
39+
padding-left: 1em;
40+
color: #b8ffcc;
41+
background: #111;
42+
}
43+
44+
table {
45+
border-collapse: collapse;
46+
width: 100%;
47+
margin: 1em 0;
48+
background: #111;
49+
}
50+
51+
th, td {
52+
border: 1px solid #444;
53+
padding: 0.6em;
54+
text-align: left;
55+
}
56+
57+
code {
58+
background: #111;
59+
padding: 0.2em 0.4em;
60+
border-radius: 4px;
61+
color: #80ffb4;
62+
}
63+
64+
img {
65+
display: block;
66+
margin: 0 auto;
67+
border-radius: 8px;
68+
max-width: 90%;
69+
box-shadow: 0 0 15px rgba(100, 255, 160, 0.2);
70+
}
71+
72+
ul, ol {
73+
margin-left: 1.5em;
74+
}
75+
76+
hr {
77+
border: none;
78+
border-top: 1px dashed #333;
79+
margin: 2em 0;
80+
}
81+
82+
footer {
83+
margin-top: 3em;
84+
font-size: 0.9em;
85+
color: #888;
86+
text-align: center;
87+
border-top: 1px solid #222;
88+
padding-top: 1em;
89+
}

0 commit comments

Comments
 (0)