brutcss/src/general.less
Yann Esposito (Yogsototh) c400c36ccf
color/no-color
2022-09-29 10:56:35 +02:00

46 lines
809 B
Plaintext

html { font-size: 12px; }
body, textarea, input, select {
background: var(--bg);
color: var(--fg);
border-radius: 0;
font-family: Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,serif;
font-size: 1rem;
margin: 0;
}
* { box-sizing: border-box; }
.addon, .sm, .nav, textarea, input, select {
outline: 0;
font-size: 10px;
}
.tb, .btn, .nav a {
text-decoration: none;
}
.container {
padding: 0 20px;
width: auto;
}
@media(min-width:1310px) {
.container {
margin: auto;
width: 1270px;
}
}
pre { background: var(--bg2);
padding: 10px;
}
code { background: var(--darken);
border: solid 1px var(--darken);
padding: 1px;
}
img { max-width: 100%; }
.big { font-size: 2em; }
.huge { font-size: 3em; }