everest-web/css/everest.css

259 lines
4.2 KiB
CSS
Raw Normal View History

2023-01-26 17:27:05 -05:00
/* css/everest.css - stylesheet for everest-web */
/*
Copyright (C) 2023 Everest Linux.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
*/
/* Sidebar menu */
.sidenav {
height: 100%;
width: 160px;
2022-06-28 18:44:37 -04:00
position: fixed;
2023-01-26 17:27:05 -05:00
z-index: 1;
2022-06-28 18:44:37 -04:00
top: 0;
2023-01-26 17:27:05 -05:00
left: 0;
2023-05-01 08:06:18 -04:00
background-color: #131313;
2023-01-26 17:27:05 -05:00
overflow-x: hidden;
padding-top: 20px;
2022-06-28 18:44:37 -04:00
}
2023-01-26 17:27:05 -05:00
/* Menu links */
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 20px;
color: #818181;
display: block;
2022-06-28 18:44:37 -04:00
}
2023-01-26 17:27:05 -05:00
.sidenav a:hover {
color: #4a86e8ff;
2022-06-28 18:44:37 -04:00
}
2023-02-17 16:59:45 -05:00
html {
background-color: #1E1E1E;
2023-05-01 08:06:18 -04:00
color: #bfbfbf;
2023-02-17 16:59:45 -05:00
}
2023-01-26 17:27:05 -05:00
.main {
margin-left: 160px;
padding: 0px 10px;
2023-01-26 17:38:56 -05:00
background-color: #1E1E1E;
2022-06-28 18:44:37 -04:00
}
2023-03-07 19:17:16 -05:00
.file {
2023-03-29 11:38:07 -04:00
font-family: monospace;
2023-03-07 19:17:16 -05:00
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: MediumSeaGreen;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
2023-05-01 10:11:09 -04:00
color: #bfbfbf;
2023-03-07 19:17:16 -05:00
}
2023-03-29 11:38:07 -04:00
.kernel {
font-family: monospace;
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: SlateBlue;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
2023-05-01 10:11:09 -04:00
color: #bfbfbf;
2023-03-29 11:38:07 -04:00
}
.warning {
background-color: #330000;
border-left-style: solid;
border-left-color: #e60000;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #e60000;
}
2023-03-31 11:46:59 -04:00
.news {
2023-05-19 12:16:38 -04:00
background-color: #131313;
2023-03-31 11:46:59 -04:00
border-left-style: solid;
border-left-color: #4a86e8ff;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
2023-05-01 10:11:09 -04:00
color: #bfbfbf;
2023-03-31 11:46:59 -04:00
}
2023-03-07 19:17:16 -05:00
fhead {
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: MediumSeaGreen;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: MediumSeaGreen;
}
2023-03-29 11:38:07 -04:00
khead {
background-color: #0F0F0F;
border-left-style: solid;
border-left-color: SlateBlue;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: Slateblue;
}
warnhead {
background-color: #330000;
border-left-style: solid;
border-left-color: #e60000;
border-width: 4px;
border-radius: 2px;
padding: 6px;
width: 50%;
color: #e60000;
}
2023-03-31 11:46:59 -04:00
newshead {
2023-05-19 12:19:11 -04:00
background-color: #131313;
2023-03-31 11:46:59 -04:00
border-left-style: solid;
border-left-color: #4a86e8ff;
border-width: 4px;
border-radius: 2px;
padding: 4px;
width: 50%;
color: #4a86e8ff;
}
2023-01-26 17:27:05 -05:00
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a{font-size: 18px;}
2022-06-28 18:44:37 -04:00
}
2023-01-26 17:27:05 -05:00
body {
font-family: sans-serif;
2023-01-26 17:35:09 -05:00
background-color: #1E1E1E;
2023-05-01 10:07:20 -04:00
color: #bfbfbf;
2022-06-28 18:44:37 -04:00
}
2023-01-26 17:27:05 -05:00
code {
font-family: monospace;
2023-03-07 19:17:16 -05:00
background-color: #0F0F0F;
2023-01-26 17:27:05 -05:00
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
padding: 2px;
2023-05-01 10:11:09 -04:00
color: #bfbfbf;
2022-06-28 18:44:37 -04:00
}
2023-03-07 19:17:16 -05:00
wiki {
border-left-style: solid;
border-left-width: 4px;
border-radius: 2px;
2023-05-16 10:02:43 -04:00
padding: 6px;
2023-03-07 19:17:16 -05:00
border-color: Tomato;
}
2023-03-29 11:38:07 -04:00
/* file {
2023-03-07 19:17:16 -05:00
border-style: solid;
2023-03-29 11:38:07 -04:00
border-width: 4px;
2023-03-07 19:17:16 -05:00
border-radius: 2px;
padding: 2px;
border-color: black;
2023-03-29 11:38:07 -04:00
} */
2023-03-07 19:17:16 -05:00
2023-01-26 17:27:05 -05:00
h2 {
border-left-style: solid;
border-color: #4a86e8ff;
padding-left: 4px;
2023-03-29 11:38:07 -04:00
border-left-width: 6px;
2023-01-26 17:27:05 -05:00
border-radius: 5px;
2023-05-01 08:06:18 -04:00
color: #bfbfbf;
2022-06-28 18:44:37 -04:00
}
2023-01-26 17:27:05 -05:00
2022-06-28 18:44:37 -04:00
button {
2023-01-26 17:27:05 -05:00
font-size: 24px;
border-style: none;
border-left-style: solid;
border-width: 8px;
padding: 12px 28px;
border-color: #4a86e8ff;
border-radius: 5px;
2023-01-26 17:41:35 -05:00
background-color: #2C2C2C;
2023-02-17 16:59:45 -05:00
color: #e6e6e6;
2023-01-26 17:27:05 -05:00
}
2023-04-11 09:01:17 -04:00
button:hover {
background-color: #252525;
}
2023-01-26 17:27:05 -05:00
hr.dotted {
border-top: 3px dotted #bbb;
2023-01-26 17:46:23 -05:00
}
2023-03-29 11:38:07 -04:00
/* p {
2023-02-17 16:59:45 -05:00
color: #e6e6e6;
2023-01-26 17:46:23 -05:00
}
2023-03-07 19:17:16 -05:00
/* strong {
2023-02-17 16:59:45 -05:00
color: #e6e6e6;
2023-03-07 19:17:16 -05:00
} */
2023-01-26 19:09:45 -05:00
i {
2023-02-17 16:59:45 -05:00
color: #e6e6e6;
}
2023-03-31 11:46:59 -04:00
footer {
text-align: center;
font-size: 10px;
padding: 20px;
}
2023-04-04 13:36:31 -04:00
#myInput {
width: 50%;
font-size: 16px;
padding: 12px 20px 12px 20px;
border: 2px solid #4a86e8ff;
border-radius: 2px;
margin-bottom: 12px;
}
#myUL {
width: 50%;
list-style-type: none;
padding: 0;
margin: 0;
}
#myUL li a {
border-left-width: 2px;
border-left-style: solid;
border-left-color: #4a86e8ff;
margin-top: -1px;
background-color: #2C2C2C;
padding: 12px;
text-decoration: none;
font-size: 18px;
color: #e6e6e6;
display: block;
}
#myUL li a:hover:not(.header) {
background-color: #1E1E1E;
}
2023-04-06 07:42:23 -04:00
img {
2023-04-06 07:44:04 -04:00
padding: 8px;
2023-04-06 07:42:23 -04:00
}