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