-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (76 loc) · 1.82 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
87
88
89
90
/* General */
* {
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
background-color: #fff;
margin: 0 auto;
}
a {
color: #333;
text-decoration: underline;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
@font-face {
font-family: 'entypo-fontello';
font-weight: normal;
font-style: normal;
font-display: swap;
src: url('fonts/entypo-fontello.eot?#iefix') format('embedded-opentype'),
url('fonts/entypo-fontello.woff2') format('woff2'),
url('fonts/entypo-fontello.woff') format('woff'),
url('fonts/entypo-fontello.ttf') format('truetype'),
url('fonts/entypo-fontello.svg#entypo-fontello') format('svg');
}
.enfold-fonts-wrap {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 20px;
justify-content: center;
}
.enfold-fonts-wrap .enfold-font {
flex-basis: 52px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
flex-direction: column;
}
.enfold-fonts-wrap .enfold-font .avia-font-char {
font-family: 'entypo-fontello';
font-size: 25px !important;
color: #333;
}
.enfold-fonts-wrap .enfold-font .avia-font-code {
font-size: 12px !important;
}
#enfold_fonts_search {
width: 100%;
line-height: 50px !important;
padding: 0 20px;
font-size: 18px !important;
}
.enfold-fonts-wrap .avia-font-description {
display: none;
}
.enfold-fonts-wrap .copy-value {
position: absolute;
left: -1000000px;
}
.enfold-fonts-wrap .avia-font-code {
cursor: copy;
}
.footer-text {
text-align: center;
padding: 20px 0;
font-size: 14px;
}