522 lines
6.3 KiB
CSS
Raw Normal View History

2023-08-27 12:07:08 +03:00
.container {
position: relative;
overflow: hidden;
2023-10-13 00:08:45 +03:00
max-width: 748px;
2023-08-27 12:07:08 +03:00
margin: 0 auto;
}
.row {
position: relative;
overflow: hidden;
}
.column {
position: relative;
float: left;
}
.float-right {
float: right;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
2023-09-23 21:37:52 +03:00
.text-color-green,
a.text-color-green,
a.text-color-green:active,
a.text-color-green:visited,
a.text-color-green:hover {
2023-08-27 12:07:08 +03:00
color: #96d9a1;
}
2023-09-23 21:37:52 +03:00
.text-color-red,
a.text-color-red,
a.text-color-red:active,
a.text-color-red:visited,
a.text-color-red:hover {
2023-08-27 12:07:08 +03:00
color: #d77575;
}
2023-09-23 21:37:52 +03:00
.text-color-pink,
a.text-color-pink,
a.text-color-pink:active,
a.text-color-pink:visited,
a.text-color-pink:hover {
color: #b55cab;
}
2023-09-23 21:37:52 +03:00
.text-color-default,
a.text-color-default,
a.text-color-default:active,
a.text-color-default:visited,
a.text-color-default:hover {
color: #ccc;
}
2023-09-23 21:37:52 +03:00
.text-color-white,
a.text-color-white,
a.text-color-white:active,
a.text-color-white:visited,
a.text-color-white:hover {
color: #fff;
}
/*
2023-08-27 12:07:08 +03:00
.text-color-pink {
color: #a44399;
}
*/
2023-08-27 12:07:08 +03:00
.text-color-blue {
color: #5785b7;
}
2023-10-10 04:03:49 +03:00
.text-color-night,
a.text-color-night,
a.text-color-night:active,
a.text-color-night:visited,
a.text-color-night:hover {
2023-09-06 02:34:37 +03:00
color: #838695;
}
2023-08-27 12:07:08 +03:00
.label {
padding: 4px 8px;
border-radius: 3px;
}
2023-09-23 21:37:52 +03:00
.label-green,
a.label-green,
a.label-green:active,
a.label-green:visited,
a.label-green:hover {
color: #fff;
background-color: #65916d;
}
2023-10-12 02:19:57 +03:00
.button,
a.button,
a.button:active,
a.button:visited,
a.button:hover {
background: #5d627d;
border: #5d627d 1px solid;
color: #ccc;
padding: 6px 8px;
border-radius: 3px;
2023-10-12 02:19:57 +03:00
opacity: .96;
display: inline-block;
}
2023-10-12 02:19:57 +03:00
.button-green,
a.button-green,
a.button-green:active,
a.button-green:visited,
a.button-green:hover {
2023-09-24 15:54:38 +03:00
color: #fff;
background-color: #65916d;
2023-10-06 14:57:52 +03:00
border: #65916d 1px solid;
2023-09-24 15:54:38 +03:00
}
.button-green:hover {
color: #fff;
background-color: #709e79;
}
.position-relative {
position: relative;
}
2023-09-23 21:37:52 +03:00
.position-fixed {
position: fixed;
}
2023-10-03 22:35:13 +03:00
.position-absolute {
position: absolute;
}
2023-09-24 00:18:16 +03:00
.vertical-align-middle {
vertical-align: middle;
}
2023-10-02 16:13:55 +03:00
.top--2-px {
top: -2px;
2023-08-27 12:07:08 +03:00
}
2023-10-02 16:13:55 +03:00
.top-2-px {
2023-09-06 19:30:02 +03:00
top: 2px;
}
2023-10-09 19:31:25 +03:00
.line-height-20-px {
line-height: 20px;
}
2023-10-02 16:13:55 +03:00
.line-height-26-px {
2023-08-27 12:07:08 +03:00
line-height: 26px;
}
2023-10-02 16:13:55 +03:00
.border-radius-3-px {
2023-08-27 12:07:08 +03:00
border-radius: 3px;
}
2023-09-24 00:18:16 +03:00
.border-radius-50 {
border-radius: 50%;
}
2023-10-08 01:20:15 +03:00
.border-color-pink-light {
2023-08-27 12:07:08 +03:00
border: 1px #9b6895 solid;
}
2023-09-24 00:18:16 +03:00
.border-color-pink {
2023-08-27 12:07:08 +03:00
border: 1px #a44399 solid;
}
2023-09-24 00:18:16 +03:00
.border-color-green {
border: 1px #65916d solid;
}
2023-10-08 01:20:15 +03:00
.border-color-pink {
2023-08-27 12:07:08 +03:00
border-bottom: 1px #a44399 solid;
}
2023-10-08 01:20:15 +03:00
.border-color-default {
border: 1px #5d627d solid;
}
2023-08-27 12:07:08 +03:00
.border-bottom-default {
border-bottom: 1px #5d627d solid;
}
2023-08-30 20:29:28 +03:00
.border-top-default {
border-top: 1px #5d627d solid;
}
2023-10-03 22:35:13 +03:00
.border-width-2-px {
2023-09-24 00:18:16 +03:00
border-width: 2px;
}
2023-08-27 12:07:08 +03:00
.background-color-night {
background-color: #34384f;
}
2023-10-08 01:03:27 +03:00
.background-color-night-light {
background-color: #3d4159;
}
2023-09-23 21:37:52 +03:00
.background-color-green {
background-color: #65916d;
}
.background-color-hover-night-light:hover,
a.background-color-hover-night-light:hover,
a:active.background-color-hover-night-light:hover,
a:visited.background-color-hover-night-light:hover {
/*color: #fff;*/
background-color: #3d4159;
2023-08-27 16:19:20 +03:00
}
2023-08-27 12:07:08 +03:00
.background-color-red {
background-color: #9b4a4a;
}
.cursor-default {
cursor: default;
}
.cursor-help {
cursor: help;
}
.font-weight-normal {
font-weight: normal
}
.font-weight-200 {
font-weight: 200
2023-08-27 12:07:08 +03:00
}
2023-10-10 04:03:49 +03:00
.font-size-10-px {
font-size: 10px;
}
2023-10-10 04:03:49 +03:00
.font-size-12-px {
2023-08-27 12:07:08 +03:00
font-size: 12px;
}
2023-10-10 04:03:49 +03:00
.font-size-22-px {
2023-08-27 12:07:08 +03:00
font-size: 22px;
}
.padding-0 {
padding: 0;
}
.padding-x-0 {
padding-left: 0;
padding-right: 0;
}
2023-10-02 16:13:55 +03:00
.padding-4-px {
2023-08-27 12:07:08 +03:00
padding: 4px;
}
.padding-l-4-px {
padding-left: 4px;
}
2023-10-02 16:13:55 +03:00
.padding-t-4-px {
2023-09-02 23:30:05 +03:00
padding-top: 4px;
}
2023-10-02 16:13:55 +03:00
.padding-y-4-px {
2023-08-28 15:17:11 +03:00
padding-top: 4px;
padding-bottom: 4px;
}
2023-08-30 15:32:31 +03:00
2023-10-02 16:13:55 +03:00
.padding-x-4-px {
2023-08-27 12:07:08 +03:00
padding-left: 4px;
padding-right: 4px;
}
2023-10-02 16:13:55 +03:00
.padding-x-8-px {
2023-08-30 15:32:31 +03:00
padding-left: 8px;
padding-right: 8px;
}
2023-10-02 16:13:55 +03:00
.padding-y-6-px {
2023-09-23 21:37:52 +03:00
padding-top: 6px;
padding-bottom: 6px;
}
2023-10-02 16:13:55 +03:00
.padding-8-px {
2023-08-27 12:07:08 +03:00
padding: 8px;
}
.padding-l-8-px {
padding-left: 8px;
}
2023-10-02 16:13:55 +03:00
.padding-t-8-px {
2023-08-30 15:51:10 +03:00
padding-top: 8px;
}
2023-10-02 16:13:55 +03:00
.padding-b-8-px {
2023-08-29 13:51:17 +03:00
padding-bottom: 8px;
}
2023-10-02 16:13:55 +03:00
.padding-y-8-px {
2023-08-27 12:07:08 +03:00
padding-top: 8px;
padding-bottom: 8px;
}
2023-10-02 16:13:55 +03:00
.padding-y-12-px {
2023-09-27 15:40:49 +03:00
padding-top: 12px;
padding-bottom: 12px;
}
2023-10-02 16:13:55 +03:00
.padding-b-16-px {
padding-bottom: 16px;
}
2023-10-02 16:13:55 +03:00
.padding-t-16-px {
2023-08-29 13:51:17 +03:00
padding-top: 16px;
}
2023-10-02 16:13:55 +03:00
.padding-y-16-px {
2023-08-30 15:32:31 +03:00
padding-top: 16px;
padding-bottom: 16px;
}
2023-10-02 16:13:55 +03:00
.padding-x-16-px {
2023-08-27 12:07:08 +03:00
padding-left: 16px;
padding-right: 16px;
}
2023-10-02 16:13:55 +03:00
.padding-16-px {
2023-08-27 12:07:08 +03:00
padding: 16px;
}
2023-10-03 22:35:13 +03:00
.padding-24-px {
padding: 24px;
}
2023-10-08 01:03:27 +03:00
.padding-x-24-px {
padding-left: 24px;
padding-right: 24px;
}
2023-10-02 16:13:55 +03:00
.margin-l-4-px {
2023-08-28 17:30:17 +03:00
margin-left: 4px;
}
2023-10-10 04:03:49 +03:00
.margin-8-px {
margin: 8px;
}
2023-10-13 23:06:20 +03:00
.margin-x-8-px {
margin-left: 8px;
margin-right: 8px;
}
2023-10-02 16:13:55 +03:00
.margin-l-8-px {
2023-08-27 12:07:08 +03:00
margin-left: 8px;
}
2023-10-10 04:03:49 +03:00
.margin-16-px {
margin: 16px;
}
2023-10-02 16:13:55 +03:00
.margin-l-16-px {
2023-08-30 15:32:31 +03:00
margin-left: 16px;
}
2023-10-02 16:13:55 +03:00
.margin-x-4-px {
margin-left: 4px;
margin-right: 4px;
}
2023-10-11 22:34:47 +03:00
.margin-b-4-px {
margin-bottom: 4px;
}
2023-10-02 16:13:55 +03:00
.margin-r-4-px {
2023-08-29 21:26:38 +03:00
margin-right: 4px;
}
2023-10-02 16:13:55 +03:00
.margin-r-8-px {
2023-08-27 12:07:08 +03:00
margin-right: 8px;
}
2023-10-02 16:13:55 +03:00
.margin-l-12-px {
2023-08-27 12:07:08 +03:00
margin-left: 12px;
}
2023-10-03 22:35:13 +03:00
.margin-l-96-px {
margin-left: 96px;
}
2023-10-10 17:42:59 +03:00
.margin-l--48-px {
margin-left: -48px;
2023-09-23 21:37:52 +03:00
}
2023-10-02 16:13:55 +03:00
.margin-y-8-px {
2023-08-27 12:07:08 +03:00
margin-top: 8px;
margin-bottom: 8px;
}
2023-10-02 16:13:55 +03:00
.margin-t-8-px {
2023-08-27 12:07:08 +03:00
margin-top: 8px;
}
2023-10-02 16:13:55 +03:00
.margin-b-8-px {
2023-08-27 12:07:08 +03:00
margin-bottom: 8px;
}
2023-10-02 16:13:55 +03:00
.margin-y-16-px {
2023-09-24 00:18:16 +03:00
margin-top: 16px;
margin-bottom: 16px;
}
2023-10-02 16:13:55 +03:00
.margin-t-16-px {
2023-08-30 20:29:28 +03:00
margin-top: 16px;
}
2023-10-02 16:13:55 +03:00
.margin-b-16-px {
2023-08-27 12:07:08 +03:00
margin-bottom: 16px;
}
2023-10-02 16:13:55 +03:00
.margin-b-24-px {
margin-bottom: 24px;
}
2023-08-27 12:07:08 +03:00
.display-block {
display: block;
}
2023-10-13 03:32:40 +03:00
.display-inline-block {
display: inline-block;
}
2023-10-03 22:35:13 +03:00
.display-flex {
display: flex;
}
2023-08-27 12:07:08 +03:00
.opacity-0 {
opacity: 0;
}
.opacity-06 {
opacity: .6;
}
.opacity-hover-1:hover {
opacity: 1;
transition: opacity .2s;
2023-08-27 12:07:08 +03:00
}
*:hover > .parent-hover-opacity-09 {
opacity: .9;
transition: opacity .2s;
}
2023-08-28 22:22:16 +03:00
.blur-2 {
2023-08-27 12:07:08 +03:00
filter: blur(2px);
}
2023-08-28 22:22:16 +03:00
.blur-hover-0:hover {
2023-08-27 12:07:08 +03:00
filter: blur(0);
}
/* responsive rules */
.width-100 {
width: 100%;
}
.width-50 {
width: 50%;
}
2023-09-23 21:37:52 +03:00
.width-20 {
width: 20%;
}
.width-80 {
width: 80%;
}
2023-10-03 22:35:13 +03:00
.width-80-px {
width: 80px;
}
2023-09-25 16:02:25 +03:00
.min-width-120-px {
min-width: 120px;
}
2023-09-24 15:54:38 +03:00
.min-width-200-px {
2023-09-25 16:02:25 +03:00
min-width: 200px;
2023-09-24 15:54:38 +03:00
}
2023-08-27 12:07:08 +03:00
@media (max-width: 1220px) {
.width-tablet-100 {
width: 100%;
}
}
@media (max-width: 512px) {
.width-mobile-100 {
width: 100%;
}
}