summaryrefslogtreecommitdiff
path: root/server/doc/css/phpdocumentor-clean-icons/style.css
diff options
context:
space:
mode:
authorroot <root@serverpc.home>2016-05-04 19:46:53 +0200
committerroot <root@serverpc.home>2016-05-04 19:46:53 +0200
commit4b978d4584994536f05b016fb65de9a8667bcb2d (patch)
tree5f45e5b0cfcd74058c7de57afe0646cd253672f3 /server/doc/css/phpdocumentor-clean-icons/style.css
parent0266c16ffc97042853916c390aaaccecc72e69a1 (diff)
parenta0056da90605f2fb4c2479cae310f12a81a9a3e7 (diff)
Merge branch 'master' into loic
Diffstat (limited to 'server/doc/css/phpdocumentor-clean-icons/style.css')
-rw-r--r--server/doc/css/phpdocumentor-clean-icons/style.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/server/doc/css/phpdocumentor-clean-icons/style.css b/server/doc/css/phpdocumentor-clean-icons/style.css
new file mode 100644
index 0000000..f069ec1
--- /dev/null
+++ b/server/doc/css/phpdocumentor-clean-icons/style.css
@@ -0,0 +1,48 @@
+@font-face {
+ font-family: 'phpdocumentor-clean-icons';
+ src:url('fonts/phpdocumentor-clean-icons.eot');
+ src:url('fonts/phpdocumentor-clean-icons.eot?#iefix') format('embedded-opentype'),
+ url('fonts/phpdocumentor-clean-icons.woff') format('woff'),
+ url('fonts/phpdocumentor-clean-icons.ttf') format('truetype'),
+ url('fonts/phpdocumentor-clean-icons.svg#phpdocumentor-clean-icons') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+
+/* Use the following CSS code if you want to use data attributes for inserting your icons */
+[data-icon]:before {
+ font-family: 'phpdocumentor-clean-icons';
+ content: attr(data-icon);
+ speak: none;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+}
+
+/* Use the following CSS code if you want to have a class per icon */
+/*
+Instead of a list of all class selectors,
+you can use the generic selector below, but it's slower:
+[class*="icon-"] {
+*/
+.icon-trait, .icon-interface, .icon-class {
+ font-family: 'phpdocumentor-clean-icons';
+ speak: none;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+}
+.icon-trait:before {
+ content: "\e000";
+}
+.icon-interface:before {
+ content: "\e001";
+}
+.icon-class:before {
+ content: "\e002";
+}