forked from BuildTheEarth-Italia/Wordpress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
57 lines (49 loc) · 1.54 KB
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*!
Theme Name: BTE Italia
Author: MemoryOfLife
Description: Wordpress theme for Build The Earth Italia
Version: 2.0.0
License: proprietary
Tags: custom-background, custom-logo
*/
/* ============================== */
/* Colors */
/* ============================== */
:root {
--accent-hue: 215;
--accent-background-color: hsl(var(--accent-hue), 80%, 50%);
--accent-text-color: hsl(0, 0%, 100%);
--accent-text-color-hover: hsl(0, 0%, 93%);
--background-color: hsl(0, 0%, 100%);
--background-color-hover: var(--accent-text-color-hover);
--text-color: hsl(0, 0%, 0%);
--alt-background-color: hsl(240, 10%, 15%);
--alt-text-color: hsl(240, 5%, 90%);
--success-color: hsl(100, 70%, 40%);
// --white: #eee;
// --white-gray: hsl(0, 0%, 90%);
// --gray: #aaa;
// --black: #000010;
// --black-gray: #202025;
// --black-gray-semitransparent: #202025b0;
}
/* ============================== */
/* General Styles */
/* ============================== */
@import "./style/general.scss";
/* ============================== */
/* home.php */
/* ============================== */
@import "./style/panel.scss";
/* ============================== */
/* NavBar */
/* ============================== */
@import "./style/navbar.scss";
/* ======================== */
/* Footer */
/* ======================== */
@import "./style/footer.scss";
/* ======================== */
/* Media Queries */
/* ======================== */
@import "./style/media-query.scss";