PluginProbe
WebTotem Security / 2.2.1
WebTotem Security v2.2.1
3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 2.2.4 All 109 releases
wt-security / htdocs / scss / main.scss

main.scss in WebTotem Security 2.2.1, at htdocs/scss/main.scss

118 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "variables.scss";
2 .wtotem_body *,
3 .wtotem_body *:after,
4 .wtotem_body *:before {
5 margin: 0;
6 padding: 0;
7 outline: none;
8 box-sizing: border-box;
9 }
10 .wtotem_body {
11 line-height: 24px;
12 font-family: "Inter", sans-serif;
13 font-size: 14px;
14 color: $c-titles;
15 font-weight: 400;
16 }
17
18 .wtotem_body ol,
19 .wtotem_body ul {
20 list-style: none;
21 }
22
23 .wtotem_body a {
24 text-decoration: none;
25 }
26 .wtotem_body a:hover {
27 text-decoration: none;
28 }
29
30 .wtotem_body h1,
31 .wtotem_body h2,
32 .wtotem_body h3,
33 .wtotem_body h4,
34 .wtotem_body h5 {
35 color: #5e6977;
36 font-weight: 700;
37 }
38 @import "blocks.scss";
39
40 @import "header.scss";
41 @import "footer.scss";
42 // 1-dashboard-page/
43 @import "1-dashboard-page/1-content_overall.scss";
44 @import "1-dashboard-page/2-content_firewall.scss";
45 @import "1-dashboard-page/3-content_chart.scss";
46 @import "1-dashboard-page/4-content_antivirus.scss";
47 @import "1-dashboard-page/5-6-content_tables.scss";
48 // 2-firewall-page/
49 @import "2-firewall-page/1-content_map.scss";
50 // 3-antivirus-page/
51 @import "3-antivirus-page/2-content_file-status.scss";
52
53 // other pages
54 @import "welcome-page/welcome.scss";
55 @import "options-page/options.scss";
56 @import "services-page/services.scss";
57
58 // state - warr, err, spinner
59 @import "state.scss";
60 @import "errors.scss";
61
62 @import "chart.scss";
63
64 // dark theme
65 @import "dark-theme.scss";
66
67 /* 992-1100px lg Large */
68 @media screen and (max-width: 1100px) {
69 .wtotem_container {
70 max-width: 960px;
71 }
72 }
73 /* 768-992px md Medium */
74 @media screen and (max-width: 992px) {
75 .wtotem_container {
76 max-width: 720px;
77 }
78 }
79 /* 576-768px sm Small */
80 @media screen and (max-width: 768px) {
81 .wtotem_container {
82 max-width: 540px;
83 }
84 .wtotem_content {
85 padding-top: 19px;
86 }
87 }
88 /* 375-576px Extra small */
89 @media screen and (max-width: 576px) {
90 .wtotem_container {
91 max-width: 345px;
92 }
93 }
94 /* 320-375px Extra small */
95 @media screen and (max-width: 374px) {
96 .wtotem_container {
97 max-width: auto;
98 padding: 0 10px;
99 }
100 }
101
102 /* 992-1100px lg Large */
103 @media screen and (max-width: 1100px) {
104 }
105 /* 768-992px md Medium */
106 @media screen and (max-width: 992px) {
107 }
108 /* 576-768px sm Small */
109 @media screen and (max-width: 768px) {
110 }
111 /* 375-576px Extra small */
112 @media screen and (max-width: 576px) {
113 }
114
115 /* 320-375px Extra small */
116 @media screen and (max-width: 576px) {
117 }
118