revuo-weekly/css/main.scss

141 lines
2.8 KiB
SCSS
Raw Normal View History

---
# Front matter comment to ensure Jekyll properly reads file.
---
//Import
2022-04-11 11:09:33 -04:00
@import "base", "mixin", "typography", "layout", "syntax.scss", "custom.scss", "responsive.scss";
2022-03-30 11:21:26 -04:00
/////////////////////////////////////////
/////////////////////////////////////////
/////////////////////////////////////////
//////////// LIGHT THEME ////////////////
/////////////////////////////////////////
/////////////////////////////////////////
/////////////////////////////////////////
//html {
//background-color: #0f0f0f;
////background-color: #f0f0f0;
//html {
//[>background-color: #0f0f0f;<]
////background-color: #f0f0f0;
//background-color: lightblue;
//}
////body {
//////background-color: #f0f0f0;
////background-color: #0f0f0f;
//body {
//[>background-color: #0f0f0f;<]
////background-color: #f0f0f0;
//background-color: lightblue;
//}
2022-04-02 05:34:14 -04:00
// Default Style (Dark)
2022-03-30 11:21:26 -04:00
:root {
--primary-color: #888888;
--secondary-color: #666666;
2022-03-31 10:21:15 -04:00
--font-color: #cecece;
2022-04-13 10:38:54 -04:00
--link-color: #e6e6e6;
2022-03-30 11:21:26 -04:00
--bg-color: #0f0f0f;
--heading-color: #454545;
2022-03-30 15:12:49 -04:00
--block-bg-color: #2f3234;
2022-03-31 10:21:15 -04:00
--block-bg-color-secondary: #444444;
--block-bg-color-heading: #333333;
2022-04-02 05:34:14 -04:00
--table-color: #cecece;
2022-04-01 15:58:53 -04:00
--head-nav-bg-color: transparent;
2022-04-02 05:34:14 -04:00
--head-nav-text-color: #d56f2a;
2022-04-02 13:23:12 -04:00
--menu-color: #e1e1e1;
2022-05-17 14:57:55 -04:00
--license-color: #666666;
2022-03-30 11:21:26 -04:00
}
2022-04-02 05:34:14 -04:00
// Was entered incorrectly.. Dark = Light
2022-03-30 11:21:26 -04:00
[data-theme="dark"] {
--primary-color: #666666;
--secondary-color: #555555;
2022-03-31 13:16:09 -04:00
--font-color: #555555;
2022-04-13 10:38:54 -04:00
--link-color: #444444;
2022-03-30 11:21:26 -04:00
--bg-color: #f0f0f0;
--heading-color: #666666;
2022-03-30 15:12:49 -04:00
--block-bg-color: #d7d7d7;
2022-03-31 10:21:15 -04:00
--block-bg-color-secondary: #c0c0c0;
--block-bg-color-heading: #a5a5a5;
2022-04-02 08:56:23 -04:00
--table-color: #000000;
2022-04-01 15:58:53 -04:00
--head-nav-bg-color: transparent;
2022-04-01 14:53:24 -04:00
--head-nav-text-color: #d56f2a;
2022-04-02 13:23:12 -04:00
--menu-color: #202225;
2022-05-17 14:57:55 -04:00
--license-color: #666666;
2022-03-30 11:21:26 -04:00
}
body {
background-color: var(--bg-color);
color: var(--font-color);
}
html {
background-color: var(--bg-color);
color: var(--font-color);
}
h1 {
color: var(--secondary-color);
}
a {
2022-04-13 10:38:54 -04:00
color: var(--link-color);
2022-03-30 11:21:26 -04:00
}
2022-04-02 05:21:09 -04:00
2022-03-31 14:03:38 -04:00
.moneroversary-table,
2022-04-02 05:21:09 -04:00
.price-table {
2022-04-01 14:24:49 -04:00
color: var(--table-color);
2022-03-31 14:03:38 -04:00
}
2022-04-01 14:53:24 -04:00
2022-04-02 05:21:09 -04:00
#weekly .revuo-classes a.wk,
#periodical .revuo-classes a.pd,
#wrap.periodical .revuo-classes a.pd:active,
#wrap.periodical .revuo-classes a.pd:focus {
2022-04-01 14:53:24 -04:00
background-color: var(--head-nav-bg-color);
color: var(--head-nav-text-color);
}
2022-04-02 09:10:04 -04:00
time.by-line,
p.by-line-post {
2022-04-02 13:23:12 -04:00
color: var(--table-color);
2022-04-02 09:10:04 -04:00
}
2022-04-02 13:23:12 -04:00
#menu,
#menu::after,
2022-04-02 15:11:46 -04:00
#menu::before {
2022-04-02 13:23:12 -04:00
background-color: var(--menu-color);
2022-04-02 14:35:49 -04:00
}
2022-04-11 11:09:33 -04:00
#header .action-container {
2022-04-12 09:59:37 -04:00
&--left {
left: 25px;
top: 35px;
}
&--right {
right: 80px;
top: 35px;
}
2022-04-11 11:09:33 -04:00
align-items: center;
display: flex;
flex-direction: row;
gap: 12px;
height: 36px;
position: absolute;
2022-04-02 14:35:49 -04:00
}
2022-04-02 16:40:29 -04:00
2022-04-12 10:10:50 -04:00
#header {
a.rss, a.donate {
display: block;
padding-bottom: 0;
}
2022-05-17 14:51:18 -04:00
}