bigly-chat/static/main.css

141 lines
1.9 KiB
CSS
Raw Normal View History

2024-11-25 14:12:43 -05:00
/* https://git.zenoverse.net/bigly-archive/auth-thing/raw/branch/main/src/routes/+layout.svelte */
body {
height: 100vh;
2024-11-25 14:12:43 -05:00
margin-top: 0px;
2024-11-25 14:12:43 -05:00
display: flex;
flex-direction: column;
align-items: center;
overflow-y: auto;
}
:root {
2024-11-25 14:12:43 -05:00
--dark-1: #362b2b;
2024-11-25 14:12:43 -05:00
--dark-2: #d8d8d8;
2024-11-25 14:12:43 -05:00
--dark-3: rgb(236, 73, 73);
2024-11-25 14:12:43 -05:00
--light-1: #ffffff;
2024-11-25 14:12:43 -05:00
--light-2: #ffa9a9;
2024-11-25 14:12:43 -05:00
2024-11-25 14:12:43 -05:00
--hyperlink: rgb(255, 72, 72);
2024-11-25 14:12:43 -05:00
--shadow-1: 0px 0px 2px 2px var(--dark-2);
font-family: sans-serif;
}
a {
color: var(--hyperlink);
text-decoration: none;
}
input,
textarea,
2024-11-25 14:12:43 -05:00
.button,
.area,
2024-11-25 14:12:43 -05:00
form,
.video {
2024-11-25 14:12:43 -05:00
border: solid var(--dark-2) 3px;
border-radius: 5px;
2024-11-25 14:12:43 -05:00
font-size: 1rem;
padding: 0.5rem;
margin-bottom: 0.5rem;
}
2024-11-25 14:12:43 -05:00
form span {
font-weight: bold;
}
2024-11-25 14:12:43 -05:00
.button a {
text-decoration: none;
color: var(--light-1);
}
.area,
form {
2024-11-25 14:12:43 -05:00
width: 900px;
max-width: 90vw;
2024-11-25 14:12:43 -05:00
}
form {
grid-template-columns: 0.7fr 1fr;
}
.form-entry {
display: block;
}
.form-key {
margin-right: 10px;
}
.form-message {
font-style: italic;
}
#main-content {
width: 720px;
}
.button {
background-color: var(--hyperlink);
font-weight: bold;
width: 150px;
2024-11-25 14:12:43 -05:00
}
.header {
background: var(--dark-1);
color: var(--light-1);
padding: 10px;
display: flex;
width: 100vw;
margin: 0;
2024-11-25 14:12:43 -05:00
font-size: 1.2em;
align-items: center;
2024-11-25 14:12:43 -05:00
margin-bottom: 10px;
position: sticky;
top: 0;
2024-11-25 14:12:43 -05:00
}
.header a {
font-weight: bold;
2024-11-25 14:12:43 -05:00
color: var(--light-1);
margin-left: 0.5em;
padding-left: 0.5em;
border-left: solid var(--light-2) 2px;
2024-11-25 14:12:43 -05:00
}
.header img {
height: 2em;
2024-11-25 14:12:43 -05:00
}
video {
width: 690px;
2024-11-25 14:12:43 -05:00
}
.video img {
2024-11-25 14:12:43 -05:00
width: 190px;
margin-left: 5px;
}
.video {
2024-11-25 14:12:43 -05:00
width: 200px;
2024-11-25 14:12:43 -05:00
height: 200px;
2024-11-25 14:12:43 -05:00
}
.videos {
display: flex;
flex-direction: row;
flex-wrap: wrap;
2024-11-25 14:12:43 -05:00
justify-content: space-around;
2024-11-25 14:12:43 -05:00
}
.videos a{
color: var(--dark-1);
}
textarea {
display: block;
2024-11-25 14:12:43 -05:00
}