jana_sessions_webpage/styles.css

79 lines
1.3 KiB
CSS
Raw Normal View History

2025-02-15 01:31:17 +01:00
:root {
--darkred: darkred;
--darkgreen: #196e0a;
--gray: #292929;
--white: white;
--black: black;
--red: red;
--yellow: #bbbb11;
2025-02-15 01:31:17 +01:00
--green: #1fd51f;
2025-02-14 18:00:43 +01:00
}
ul {
2025-02-15 01:31:17 +01:00
list-style-position: inside;
2025-02-14 18:20:04 +01:00
}
body {
2025-02-15 01:31:17 +01:00
font-size: 2rem;
2025-02-14 18:20:04 +01:00
}
2025-02-15 01:57:22 +01:00
html, body {
margin: 0;
padding: 0;
}
2025-02-15 01:31:17 +01:00
@media screen and (max-width: 1000px) {
body {
font-size: 3rem;
}
}
.background {
background-color: var(--gray);
color: var(--white);
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
2025-02-15 01:57:22 +01:00
overflow: scroll;
}
.column {
display: flex;
flex-direction: column;
gap: 10px;
2025-02-15 01:31:17 +01:00
}
.box {
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
justify-content: center;
align-items: center;
margin: 0 auto;
width: 80%;
max-width: 800px;
2025-02-15 01:57:22 +01:00
box-sizing: border-box;
2025-02-15 01:31:17 +01:00
}
.wide {
width: 100%;
max-width: 1000px;
}
.button {
cursor: pointer;
}
.button:hover {
filter: brightness(1.2);
}
.elem-background {
background-color: var(--darkgreen);
}
.error-background {
background-color: var(--darkred);
}
.highlight-background {
background-color: var(--green);
}
.cancel-background {
background-color: var(--red);
}
.change-background {
background-color: var(--yellow);
}