Skip to content

Commit 9241b13

Browse files
committed
[PROJ-18.4/st] layout-content-element
Adding/copying files from the previous realization. FS-dev: B-3 / JS basic
1 parent 7b092a2 commit 9241b13

31 files changed

+1194
-0
lines changed

full-stack-dev/3-js-basic/18-proj-habit-tracker/18-4-layout-content-element/README.md

Whitespace-only changes.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.app {
2+
display: flex;
3+
margin: 20px auto;
4+
border: 2px solid var(--main-border-color, #E7EBFB);
5+
border-radius: var(--default-br, 10px);
6+
padding: var(--app-padding, 30px);
7+
max-width: var(--app-max-width, 1440px);
8+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.content {
2+
border-top-right-radius: var(--default-br, 10px);
3+
border-bottom-right-radius: var(--default-br, 10px);
4+
padding: 45px;
5+
width: 100%;
6+
background: var(--bg-main-page, #F3F6FD);
7+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/* comfortaa, light - 300 - cyrillic_latin */
2+
@font-face {
3+
font-family: "Comfortaa";
4+
font-style: normal;
5+
font-weight: 300;
6+
font-display: swap;
7+
src: url("../fonts/comfortaa-v47-cyrillic_latin-300.woff2") format("woff2");
8+
}
9+
10+
/* comfortaa, regular - 400 - cyrillic_latin */
11+
@font-face {
12+
font-family: "Comfortaa";
13+
font-style: normal;
14+
font-weight: 400;
15+
font-display: swap;
16+
src: url("../fonts/comfortaa-v47-cyrillic_latin-regular.woff2") format("woff2");
17+
}
18+
19+
/* comfortaa, medium - 500 - cyrillic_latin */
20+
@font-face {
21+
font-family: "Comfortaa";
22+
font-style: normal;
23+
font-weight: 500;
24+
font-display: swap;
25+
src: url("../fonts/comfortaa-v47-cyrillic_latin-500.woff2") format("woff2");
26+
}
27+
28+
/* comfortaa, semi bold - 600 - cyrillic_latin */
29+
@font-face {
30+
font-family: "Comfortaa";
31+
font-style: normal;
32+
font-weight: 600;
33+
font-display: swap;
34+
src: url("../fonts/comfortaa-v47-cyrillic_latin-600.woff2") format("woff2");
35+
}
36+
37+
/* comfortaa, bold - 700 - cyrillic_latin */
38+
@font-face {
39+
font-family: "Comfortaa";
40+
font-style: normal;
41+
font-weight: 700;
42+
font-display: swap;
43+
src: url("../fonts/comfortaa-v47-cyrillic_latin-700.woff2") format("woff2");
44+
}

0 commit comments

Comments
 (0)