You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.2 KiB
70 lines
1.2 KiB
/*
|
|
Theme Name: Kolarix - BizTime
|
|
Author: Kolarix
|
|
Version: 1.1.0
|
|
*/
|
|
|
|
@import "css/variables.css";
|
|
@import "css/min_reset.css";
|
|
@import "css/header";
|
|
@import "css/main";
|
|
@import "css/animations.css";
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
max-width: 1440px;
|
|
margin: 0 auto;
|
|
padding: 0 var(--gap);
|
|
}
|
|
|
|
.sm-grey {
|
|
color: var(--grey-blue);
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.tag {
|
|
font-family: "BarlowCondensed-Bold", sans-serif;
|
|
background: var(--dark-blue);
|
|
color: #ffffff;
|
|
letter-spacing: 0;
|
|
padding: 5px 10px;
|
|
border-radius: 20px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.primary {
|
|
-webkit-text-fill-color: #ffffff;
|
|
color: #ffffff;
|
|
background-color: var(--primary);
|
|
padding: 20px;
|
|
|
|
&:hover {
|
|
background-color: var(--primary__hover);
|
|
}
|
|
}
|
|
|
|
body:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 50%;
|
|
height: 50%;
|
|
z-index: -1;
|
|
background: var(--light-grey-blue);
|
|
border-bottom-left-radius: 100px;
|
|
}
|
|
|
|
body:before {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 50%;
|
|
top: 50%;
|
|
z-index: -1;
|
|
background: var(--light-grey-blue);
|
|
border-top-right-radius: 100px;
|
|
}
|
|
|