chore(web): change from CRLF to LF in css

This commit is contained in:
Masahiko AMANO 2023-01-27 15:29:58 +03:00
parent aafaf2d32c
commit 7e0e619950

View File

@ -1,77 +1,77 @@
@import url('https://fonts.googleapis.com/css2?family=Epilogue&family=Secular+One&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Epilogue&family=Secular+One&display=swap');
html, html,
body { body {
width: 100%; width: 100%;
min-height: 100vh; min-height: 100vh;
margin: 0; margin: 0;
padding: 10px; padding: 10px;
position: absolute; position: absolute;
left: 0; left: 0;
right: 0; right: 0;
top: 0; top: 0;
bottom: 0; bottom: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background-image: url(/images/bg-1920x1440.webp); background-image: url(/images/bg-1920x1440.webp);
background-size: cover; background-size: cover;
} }
header { header {
margin: 0; margin: 0;
margin-top: 2vw; margin-top: 2vw;
padding: 0; padding: 0;
text-align: center; text-align: center;
} }
h1 { h1 {
margin: 0; margin: 0;
padding: 0; padding: 0;
color: white; color: white;
font-family: Epilogue, sans-serif; font-family: Epilogue, sans-serif;
font-size: 48pt; font-size: 48pt;
text-shadow: 0 0 8px black; text-shadow: 0 0 8px black;
text-align: center; text-align: center;
cursor: default; cursor: default;
} }
main { main {
margin-top: 50px; margin-top: 50px;
background-color: #fff8; background-color: #fff8;
box-shadow: 0 0 0.5vw black; box-shadow: 0 0 0.5vw black;
border-radius: 1.5vw; border-radius: 1.5vw;
width: 80vw; width: 80vw;
max-width: 700px; max-width: 700px;
transition: 0.3s; transition: 0.3s;
overflow: hidden; overflow: hidden;
} }
main:hover { main:hover {
background-color: #fff; background-color: #fff;
box-shadow: 0 0 1vw black; box-shadow: 0 0 1vw black;
} }
h2 { h2 {
margin: 0; margin: 0;
padding: 0 2vw; padding: 0 2vw;
height: 9vw; height: 9vw;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
background-color: hsla(270, 80%, 80%, 0.6); background-color: hsla(270, 80%, 80%, 0.6);
border-bottom: 0; border-bottom: 0;
font-family: Secular One, sans-serif; font-family: Secular One, sans-serif;
font-size: 3vw; font-size: 3vw;
text-shadow: 2.5px 2px 0.5px white; text-shadow: 2.5px 2px 0.5px white;
cursor: pointer; cursor: pointer;
} }
h3 { h3 {
margin: 0; margin: 0;
margin-top: 0.5vw; margin-top: 0.5vw;
font-family: Secular One, sans-serif; font-family: Secular One, sans-serif;
font-size: 3vw; font-size: 3vw;
} }