-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
18 lines (17 loc) · 1015 Bytes
/
style.css
File metadata and controls
18 lines (17 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@charset "UTF-8";
/*!
Theme Name: Clean slate
Version: 1.0
*/
@import url("assets/css/reset.css"); /* Resetting browser defaults */
@import url("assets/css/fonts.css"); /* Loading of fonts needed */
@import url("assets/css/typography.css"); /* Setting typography vars */
@import url("assets/css/colors.css"); /* Setting color vars */
@import url("assets/css/buttons.css"); /* Setting button styles */
@import url("assets/css/chatbot.css"); /* Setting chatbot styles */
@import url("assets/css/mobile.css") screen and (max-width: 767px); /* Loading mobile style */
@import url("assets/css/tablet.css") screen and (min-width: 768px) and (max-width: 1239px); /* Loading tablet style */
@import url("assets/css/desktop.css") screen and (min-width: 1240px); /* Loading desktop style */
.align-center {
text-align: center;
}