blob: 59cf05e3ff87425c408b937a2425690f0c8ad1b9 (
plain)
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
|
@font-face {
font-family: 'OpenSans-Regular';
font-style: normal;
font-weight: 400;
src:
local('Open Sans Regular'),
local('OpenSans-Regular'),
url(https://fonts.gstatic.com/s/opensans/v15/cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2) format('woff2'),
url(http://fonts.gstatic.com/s/opensans/v15/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
font-family: 'OpenSans-Italic';
font-style: normal;
font-weight: 400;
src:
local('Open Sans Italic'),
local('OpenSans-Italic'),
url(https://fonts.gstatic.com/s/opensans/v15/xjAJXh38I15wypJXxuGMBogp9Q8gbYrhqGlRav_IXfk.woff2) format('woff2'),
url(http://fonts.gstatic.com/s/opensans/v15/xjAJXh38I15wypJXxuGMBobN6UDyHWBl620a-IRfuBk.woff) format('woff');
}
@font-face {
font-family: 'OpenSans-Semibold';
font-style: normal;
font-weight: 400;
src:
local('Open Sans Semibold'),
local('OpenSans-Semibold'),
url(https://fonts.gstatic.com/s/opensans/v15/MTP_ySUJH_bn48VBG8sNShampu5_7CjHW5spxoeN3Vs.woff2) format('woff2'),
url(http://fonts.gstatic.com/s/opensans/v15/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
@import './../../src/style/scss/themes/1802/style.scss';
.colors-table {
width: 75%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
font-size: 13px;
.color-section {
display: flex;
flex-direction: column;
margin: 10px 0;
min-width: 150px;
div {
align-self: center;
user-select: text;
}
$circle-size: 40px;
.color-circle {
height: $circle-size;
width: $circle-size;
border-radius: $circle-size;
padding: 10px;
text-align: center;
}
}
}
|