Skip to content

Commit 5a0e6c4

Browse files
Merge pull request #4 from winc1980/develop
🐛 Fix: デフォルトのcssを削除する
2 parents 47c893e + b63e523 commit 5a0e6c4

File tree

2 files changed

+14
-95
lines changed

2 files changed

+14
-95
lines changed

index.html

-22
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,6 @@
1616
rel="stylesheet"
1717
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
1818
/>
19-
<style>
20-
html {
21-
scroll-behavior: smooth;
22-
font-size: 62.5%;
23-
font-family: 'Noto Sans', serif;
24-
}
25-
body * {
26-
font-family: 'Noto Sans JP', sans-serif;
27-
box-sizing: border-box;
28-
font-size: 1.6rem;
29-
margin: 0;
30-
text-align: left;
31-
}
32-
body {
33-
margin: 0;
34-
min-height: unset !important;
35-
}
36-
#app {
37-
max-width: unset !important;
38-
padding: 0 !important;
39-
}
40-
</style>
4119
</head>
4220
<body>
4321
<div id="app"></div>

src/style.css

+14-73
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,20 @@
1-
:root {
2-
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
3-
line-height: 1.5;
4-
font-weight: 400;
5-
6-
color-scheme: light dark;
7-
color: rgba(255, 255, 255, 0.87);
8-
background-color: #242424;
9-
10-
font-synthesis: none;
11-
text-rendering: optimizeLegibility;
12-
-webkit-font-smoothing: antialiased;
13-
-moz-osx-font-smoothing: grayscale;
14-
}
15-
16-
a {
17-
font-weight: 500;
18-
color: #646cff;
19-
text-decoration: inherit;
20-
}
21-
a:hover {
22-
color: #535bf2;
1+
html {
2+
scroll-behavior: smooth;
3+
font-size: 62.5%;
4+
font-family: 'Noto Sans', serif;
5+
}
6+
body * {
7+
font-family: 'Noto Sans JP', sans-serif;
8+
box-sizing: border-box;
9+
font-size: 1.6rem;
10+
margin: 0;
11+
text-align: left;
2312
}
24-
2513
body {
2614
margin: 0;
27-
display: flex;
28-
place-items: center;
29-
min-width: 320px;
30-
min-height: 100vh;
31-
}
32-
33-
h1 {
34-
font-size: 3.2em;
35-
line-height: 1.1;
36-
}
37-
38-
button {
39-
border-radius: 8px;
40-
border: 1px solid transparent;
41-
padding: 0.6em 1.2em;
42-
font-size: 1em;
43-
font-weight: 500;
44-
font-family: inherit;
45-
background-color: #1a1a1a;
46-
cursor: pointer;
47-
transition: border-color 0.25s;
15+
min-height: unset !important;
4816
}
49-
button:hover {
50-
border-color: #646cff;
51-
}
52-
button:focus,
53-
button:focus-visible {
54-
outline: 4px auto -webkit-focus-ring-color;
55-
}
56-
57-
.card {
58-
padding: 2em;
59-
}
60-
6117
#app {
62-
max-width: 1280px;
63-
margin: 0 auto;
64-
padding: 2rem;
65-
text-align: center;
66-
}
67-
68-
@media (prefers-color-scheme: light) {
69-
:root {
70-
color: #213547;
71-
background-color: #ffffff;
72-
}
73-
a:hover {
74-
color: #747bff;
75-
}
76-
button {
77-
background-color: #f9f9f9;
78-
}
18+
max-width: unset !important;
19+
padding: 0 !important;
7920
}

0 commit comments

Comments
 (0)