url-minify/frontend/styles/globals.css

34 lines
573 B
CSS
Raw Normal View History

2022-01-27 06:35:13 +00:00
html,
body {
2022-02-13 08:28:33 +00:00
padding: 0;
margin: 0;
width: 100vw;
overflow-x: hidden;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2022-01-27 06:35:13 +00:00
}
a {
2022-02-13 08:28:33 +00:00
color: inherit;
text-decoration: none;
2022-01-27 06:35:13 +00:00
}
* {
2022-02-13 08:28:33 +00:00
margin: 0;
padding: 0;
box-sizing: border-box;
2022-01-27 06:35:13 +00:00
}
2022-02-01 15:50:14 +00:00
2022-02-13 08:28:33 +00:00
section {
width: 100vw;
min-height: 100vh;
2022-02-01 15:50:14 +00:00
}
2022-02-13 08:28:33 +00:00
.flex-column {
display: flex;
flex-direction: column;
background-image: url('./../assets/bg/main-bg.png');
2022-02-08 15:21:06 +00:00
}
2022-02-13 08:28:33 +00:00
.main-bg {
background-image: url('./../assets/bg/main-bg.png');
2022-02-08 15:21:06 +00:00
}