forked from GlebkaF/webdev-cw-instapro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui-kit.css
162 lines (142 loc) · 2.67 KB
/
ui-kit.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
Это стили Дизайн системы, сквозные стили для элементов интерфейса
всего приложения: шрифты, кнопки, инпуты и так далее
*/
@font-face {
font-family: "StratosSkyeng";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("./assets/fonts/stratosskyengweb-regular.woff2") format("woff2");
}
@font-face {
font-family: "StratosSkyeng";
font-style: normal;
font-weight: 500;
font-display: swap;
src: url("./assets/fonts/stratosskyengweb-medium.woff2") format("woff2");
}
html {
/* скрывает скролбары в firefox */
scrollbar-width: none;
}
body {
margin: 0;
padding: 0;
font-family: StratosSkyeng;
overflow: auto;
font-size: 14px;
line-height: 18px;
}
/* скрывает скролбары в chrome */
body::-webkit-scrollbar {
display: none;
}
p {
margin: 0;
}
.button,
.secondary-button {
display: block;
padding: 10px 13px 13px;
font-size: 18px;
line-height: 22px;
border-radius: 5px;
background-color: #565eef;
color: #ffffff;
border: none;
}
.link-button {
display: inline;
border: 0;
padding: 0;
background: none;
color: #565eef;
cursor: pointer;
}
.button:hover {
background-color: #6d73ff;
}
.button[disabled="true"],
.secondary-button[disabled="true"] {
background-color: #f4f5f6;
color: rgba(153, 153, 153, 0.6);
pointer-events: none;
}
.button:active {
background-color: #4f56ce;
}
.secondary-button {
background-color: #edecff;
color: #565eef;
}
.secondary-button:hover {
background-color: #f2eeff;
}
.secondary-button:active {
background-color: #d8d7ff;
}
.input {
height: 36px;
box-sizing: border-box;
padding: 15px;
font-size: 14px;
line-height: 18px;
color: rgb(4, 18, 27);
border: none;
border-radius: 5px;
background-color: #e8e8e8;
}
.input .-error {
background-color: #fff;
}
.input:focus {
background-color: #fff;
}
.textarea {
padding: 15px;
resize: none;
width: 100%;
height: 100px;
}
strong {
font-weight: 500;
}
/** Анимация загрузки **/
.loader {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.loader div {
display: inline-block;
position: absolute;
left: 8px;
width: 16px;
background: #000;
animation: loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.loader div:nth-child(1) {
left: 8px;
animation-delay: -0.24s;
}
.loader div:nth-child(2) {
left: 32px;
animation-delay: -0.12s;
}
.loader div:nth-child(3) {
left: 56px;
animation-delay: 0;
}
@keyframes loader {
0% {
top: 8px;
height: 64px;
}
50%,
100% {
top: 24px;
height: 32px;
}
}