url-minify/frontend/styles/globals.css

26 lines
398 B
CSS
Raw Normal View History

2022-01-27 06:35:13 +00:00
html,
body {
2022-01-31 17:34:21 +00:00
padding: 0;
margin: 0;
2022-02-01 15:50:14 +00:00
width:100vw;
overflow-x:hidden;
2022-01-31 17:34:21 +00:00
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-01-31 17:34:21 +00:00
color: inherit;
text-decoration: none;
2022-01-27 06:35:13 +00:00
}
* {
2022-02-01 15:50:14 +00:00
margin: 0;
padding:0;
2022-01-31 17:34:21 +00:00
box-sizing: border-box;
2022-01-27 06:35:13 +00:00
}
2022-02-01 15:50:14 +00:00
section{
width:100vw;
min-height:100vh;
}