Files
5chan/src/views/home/home.module.css
T

159 lines
2.4 KiB
CSS
Raw Normal View History

2024-02-28 21:18:37 +01:00
.content {
width: 100%;
height: 100%;
margin: auto;
2024-02-28 21:18:37 +01:00
text-align: left;
width: 57.69em;
min-width: 750px;
}
.debug {
position: fixed;
top: 0;
right: 0;
padding: 0.5em;
}
.debug select {
margin: 2px;
}
2024-02-28 21:18:37 +01:00
.logo img {
width: 300px;
height: 120px;
}
.logo {
margin: 0px auto;
text-align: center;
}
.box {
2024-03-01 20:42:21 +01:00
position: relative;
2024-03-01 13:18:01 +01:00
background: var(--background-text-color);
color: var(--text-color-standard);
border: 1px solid;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
}
.boxBar {
padding-left: 0.5em;
line-height: 2em;
}
2024-03-01 13:18:01 +01:00
.primaryColorBar {
background: var(--primary-color);
color: var(--text-color-on-primary);
}
.secondaryColorBar {
background: var(--secondary-color);
color: var(--text-color-on-secondary);
}
.boxBar h2 {
font-size: 131%;
font-weight: 700;
}
2024-03-01 20:42:21 +01:00
.boxBar span {
position: absolute;
top: 0;
right: 0;
padding-right: 0.25em;
text-transform: lowercase;
}
.boxBar span:hover {
cursor: pointer;
color: var(--text-color-on-secondary-hover);
}
.boxContent {
line-height: 1.5em;
font-size: 93%;
padding: 0.5em;
padding-top: 0.25em;
padding-bottom: 0;
}
.boxContent a, .boxContent a:visited{
2024-03-01 20:42:21 +01:00
color: var(--external-link-text-color);
}
.searchBar {
display: flex;
text-align: center;
justify-content: center;
margin-bottom: 20px;
}
.searchBar input {
font-size: 18px;
height: 30px;
box-sizing: border-box;
appearance: none;
border-radius: 0px;
border: 1px solid rgb(170, 170, 170);
outline: none;
}
.searchBar input {
width: 400px;
padding: 3px 10px;
}
.searchBar button {
margin-left: 4px;
2024-03-01 13:18:01 +01:00
padding: 3px 5px;
display: inline-block;
text-transform: capitalize;
font-size: 14px;
2024-02-28 21:18:37 +01:00
}
2024-02-29 22:37:01 +01:00
.capitalize {
text-transform: capitalize;
}
2024-03-01 20:42:21 +01:00
.list a {
display: inline-block;
color: var(--internal-link-text-color);
text-decoration: var(--internal-link-text-decoration);
}
.list a:hover {
color: var(--internal-link-text-color-hover);
text-decoration: var(--internal-link-text-decoration-hover);
}
.boardsBoxContent {
font-size: 93%;
padding: 0.5em;
padding-top: 0.25em;
padding-bottom: 0;
line-height: 130%;
display: table;
}
.boardsBoxContent .column {
float: left;
width: 163px;
margin-right: 20px;
overflow: hidden;
}
.boardsBoxContent h3 {
font-size: 100%;
font-weight: 700;
text-decoration: underline;
color: var(--text-color-on-secondary);
}
2024-02-28 21:18:37 +01:00
@media (max-width: 768px) {
.content {
2024-03-01 13:18:01 +01:00
min-width: 0;
2024-02-28 21:18:37 +01:00
width: auto;
2024-03-01 13:18:01 +01:00
padding: 10px;
2024-02-28 21:18:37 +01:00
}
2024-02-27 17:58:08 +01:00
}