focus/frontend/static/css/global.css

36 lines
470 B
CSS
Raw Normal View History

2023-12-29 01:49:09 +01:00
* {
2023-12-28 01:19:29 +01:00
margin: 0;
2023-12-29 01:49:09 +01:00
padding: 0;
}
2024-01-15 22:26:52 +01:00
html {
font-size: 66%;
}
2023-12-29 01:49:09 +01:00
body {
2023-12-28 01:19:29 +01:00
font-family: "Open sans", sans-serif;
color: white;
2023-12-29 01:49:09 +01:00
background-color: #252525;
}
2024-01-01 23:39:59 +01:00
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
2024-01-02 17:17:16 +01:00
}
button:not(.real) {
border: none;
background-color: inherit;
color: inherit;
font-size: inherit;
cursor: pointer;
border-radius: 3px;
}
button:not(.real):hover {
background-color: #fff2;
2024-01-01 23:39:59 +01:00
}