| 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 |
|