-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (86 loc) · 1.38 KB
/
style.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
html {
--color-blue: #244c8e;
--html-color: #f16529;
--css-color: #264de4;
--js-color: #f0db4f;
--brand-color: #244c8e;
}
.shower {
--slide-ratio: calc(16 / 9);
}
.slide:after {
background-image: url('images/ribbon.svg');
}
.slide:after {
transform-origin: center 0;
/* transform: scale(0.5); */
}
.slide--title {
display: flex;
padding-top: 0;
align-items: center;
align-content: center;
justify-content: center;
text-align: center;
flex-wrap: wrap;
}
.slide--title:after {
visibility: hidden;
}
.w-100 {
width: 100%;
}
.fz-12 {
font-size: 12px;
}
.fz-16 {
font-size: 16px;
}
.fz-18 {
font-size: 20px;
}
.custom-table {
text-align: center;
}
.custom-table th,
.custom-table td {
text-align: center;
background-image: none !important;
}
.icon {
font-size: 148px;
}
.icon--html {
color: var(--html-color);
}
.icon--css {
color: var(--css-color);
}
.icon--js {
color: var(--js-color);
}
.in-white {
color: white !important;
}
.close-button {
width: 66px;
height: 66px;
border: 4px solid var(--color-blue);
color: var(--color-blue);
font-weight: 900;
font-size: 60px;
line-height: 56px;
font-weight: 400;
background-color: transparent;
cursor: pointer;
}
.demo-nav__list-item {
display: inline-block;
}
.demo-nav__list-item:before {
display: none;
}
.code-sample {
color: white;
background-color: var(--brand-color) !important;
}