PluginProbe
WP Coder – Insert & Manage Code Snippets / 4.2
WP Coder – Insert & Manage Code Snippets v4.2
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / assets / icons / css / icons.css

icons.css in WP Coder – Insert & Manage Code Snippets 4.2, at assets/icons/css/icons.css

165 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*--------------------------------
2
3 Nucleo icon font
4 Generated using nucleoapp.com
5
6 -------------------------------- */
7
8 @font-face {
9 font-family: 'Nucleo';
10 src: url('../fonts/Nucleo.eot');
11 src: url('../fonts/Nucleo.eot') format('embedded-opentype'),
12 url('../fonts/Nucleo.woff2') format('woff2'),
13 url('../fonts/Nucleo.woff') format('woff'),
14 url('../fonts/Nucleo.ttf') format('truetype'),
15 url('../fonts/Nucleo.svg') format('svg');
16 }
17
18 /* base class */
19 .icon {
20 display: inline-block;
21 font: normal normal normal 1em/1 'Nucleo';
22 color: inherit;
23 flex-shrink: 0;
24 -webkit-font-smoothing: antialiased;
25 -moz-osx-font-smoothing: grayscale;
26 }
27
28 /* size examples - relative units */
29 .icon-sm {
30 font-size: 0.8em;
31 }
32
33 .icon-lg {
34 font-size: 1.2em;
35 }
36
37 /* size examples - absolute units */
38 .icon-16 {
39 font-size: 16px;
40 }
41
42 .icon-32 {
43 font-size: 32px;
44 }
45
46 /* rotate the icon infinitely */
47 .icon-is-spinning {
48 animation: icon-spin 1s infinite linear;
49 }
50
51 @keyframes icon-spin {
52 0% {
53 transform: rotate(0deg);
54 }
55 100% {
56 transform: rotate(360deg);
57 }
58 }
59
60 /* transform */
61 .icon-rotate-90 {
62 transform: rotate(90deg);
63 }
64
65 .icon-rotate-180 {
66 transform: rotate(180deg);
67 }
68
69 .icon-rotate-270 {
70 transform: rotate(270deg);
71 }
72
73 .icon-flip-y {
74 transform: scaleY(-1);
75 }
76
77 .icon-flip-x {
78 transform: scaleX(-1);
79 }
80
81 /* icons */
82 .icon-content::before {
83 content: "\ea02";
84 }
85
86 .icon-login::before {
87 content: "\ea03";
88 }
89
90 .icon-admin::before {
91 content: "\ea04";
92 }
93
94 .icon-media::before {
95 content: "\ea05";
96 }
97
98 .icon-core::before {
99 content: "\ea06";
100 }
101
102 .icon-comments::before {
103 content: "\ea07";
104 }
105
106 .icon-optimization::before {
107 content: "\ea08";
108 }
109
110 .icon-copy::before {
111 content: "\ea09";
112 }
113
114 .icon-template::before {
115 content: "\ea0a";
116 }
117
118 .icon-crosshair::before {
119 content: "\ea0c";
120 }
121
122 .icon-meeting::before {
123 content: "\ea0d";
124 }
125
126 .icon-calendar::before {
127 content: "\ea0e";
128 }
129
130 .icon-lock-portrait::before {
131 content: "\ea10";
132 }
133
134 .icon-pc::before {
135 content: "\ea11";
136 }
137
138 .icon-translation::before {
139 content: "\ea12";
140 }
141
142 .icon-clear::before {
143 content: "\ea13";
144 }
145
146 .icon-construction::before {
147 content: "\ea14";
148 }
149
150 .icon-finger-snap::before {
151 content: "\ea15";
152 }
153
154 .icon-document::before {
155 content: "\ea16";
156 }
157
158 .icon-list::before {
159 content: "\ea17";
160 }
161
162 .icon-browser-chrome::before {
163 content: "\ea18";
164 }
165