jana_sessions_webpage/leptos_webpage/styles.css

112 lines
1.6 KiB
CSS
Raw Normal View History

2025-02-15 01:31:17 +01:00
:root {
2025-02-20 10:55:18 +01:00
--darkred: darkred;
--darkgreen: #196e0a;
--darkgray: #292929;
--gray: #606060;
--white: white;
--black: black;
--red: red;
--yellow: #bbbb11;
--green: #1fd51f;
}
2025-02-14 18:00:43 +01:00
ul {
2025-02-20 10:55:18 +01:00
list-style-position: inside;
2025-02-14 18:20:04 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-14 18:20:04 +01:00
body {
2025-02-20 10:55:18 +01:00
font-size: 2rem;
2025-02-14 18:20:04 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:57:22 +01:00
html, body {
2025-02-20 10:55:18 +01:00
margin: 0;
padding: 0;
2025-02-15 01:57:22 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 19:28:53 +01:00
p {
2025-02-20 10:55:18 +01:00
margin: 0;
2025-02-15 19:28:53 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
@media screen and (max-width: 1000px) {
2025-02-20 10:55:18 +01:00
body {
font-size: 3rem;
}
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.background {
2025-02-20 10:55:18 +01:00
background-color: var(--darkgray);
color: var(--white);
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: scroll;
}
2025-02-15 01:57:22 +01:00
.column {
2025-02-20 10:55:18 +01:00
display: flex;
flex-direction: column;
gap: 10px;
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.box {
2025-02-20 10:55:18 +01:00
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;
box-sizing: border-box;
}
2025-02-15 01:31:17 +01:00
.wide {
2025-02-20 10:55:18 +01:00
width: 100%;
max-width: 1000px;
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.button {
2025-02-20 10:55:18 +01:00
cursor: pointer;
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.button:hover {
2025-02-20 10:55:18 +01:00
filter: brightness(1.2);
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.elem-background {
2025-02-20 10:55:18 +01:00
background-color: var(--darkgreen);
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.error-background {
2025-02-20 10:55:18 +01:00
background-color: var(--darkred);
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 01:31:17 +01:00
.highlight-background {
2025-02-20 10:55:18 +01:00
background-color: var(--green);
2025-02-15 01:31:17 +01:00
}
2025-02-20 10:55:18 +01:00
.cancel-background {
2025-02-20 10:55:18 +01:00
background-color: var(--red);
}
2025-02-20 10:55:18 +01:00
.change-background {
2025-02-20 10:55:18 +01:00
background-color: var(--yellow);
}
2025-02-20 10:55:18 +01:00
2025-02-15 19:28:53 +01:00
.small-text {
2025-02-20 10:55:18 +01:00
color: var(--darkgray);
font-size: 1rem;
text-align: left;
2025-02-15 19:28:53 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 19:28:53 +01:00
.strikethrough {
2025-02-20 10:55:18 +01:00
text-decoration: line-through;
2025-02-15 19:28:53 +01:00
}
2025-02-20 10:55:18 +01:00
2025-02-15 19:28:53 +01:00
.bold {
2025-02-20 10:55:18 +01:00
font-weight: bold;
2025-02-15 19:28:53 +01:00
}