focus/frontend/static/css/global.css

24 lines
379 B
CSS
Raw Normal View History

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-17 22:24:02 +01:00
margin: 0;
padding: 0;
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 {
2024-01-17 22:15:41 +01:00
background-color: #fff2;
2024-01-01 23:39:59 +01:00
}