Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Simon Daron
panikweb
Commits
4025ac46
Commit
4025ac46
authored
Jan 14, 2017
by
fred
Browse files
style: only declare icons that are in use
parent
362f1dfa
Changes
2
Hide whitespace changes
Inline
Side-by-side
panikweb_templates/static/css/general.css
View file @
4025ac46
...
...
@@ -411,3 +411,74 @@ input[type=submit] {
*
zoom
:
1
;
}
/* icons */
@font-face
{
font-family
:
'FontAwesome'
;
src
:
url('../font-awesome/font/fontawesome-webfont.eot?v=3.2.1')
;
src
:
url('../font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.2.1')
format
(
'embedded-opentype'
),
url('../font-awesome/font/fontawesome-webfont.woff?v=3.2.1')
format
(
'woff'
),
url('../font-awesome/font/fontawesome-webfont.ttf?v=3.2.1')
format
(
'truetype'
),
url('../font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1')
format
(
'svg'
);
font-weight
:
normal
;
font-style
:
normal
;
}
/* FONT AWESOME CORE
* -------------------------- */
[
class
^=
"icon-"
],
[
class
*=
" icon-"
]
{
font-family
:
FontAwesome
;
font-weight
:
normal
;
font-style
:
normal
;
text-decoration
:
inherit
;
-webkit-font-smoothing
:
antialiased
;
*
margin-right
:
.3em
;
}
[
class
^=
"icon-"
]
:before
,
[
class
*=
" icon-"
]
:before
{
text-decoration
:
inherit
;
display
:
inline-block
;
speak
:
none
;
}
/* makes sure icons active on rollover in links */
a
[
class
^=
"icon-"
],
a
[
class
*=
" icon-"
]
{
display
:
inline
;
}
/* reglo symbols variants */
[
class
^=
"icon-"
]
.resymbol
,
[
class
*=
" icon-"
]
.resymbol
{
font-family
:
Symbols
;
}
/* specific icon classes */
.icon-archive
:before
{
content
:
"\f187"
;
}
.icon-bolt
:before
{
content
:
"\f0e7"
;
}
.icon-bullhorn
:before
{
content
:
"\f0a1"
;
}
.icon-calendar
:before
{
content
:
"\f073"
;
}
.icon-check
:before
{
content
:
"\f046"
;
}
.icon-check-empty
:before
{
content
:
"\f096"
;
}
.icon-chevron-sign-left
:before
{
content
:
"\f137"
;
}
.icon-chevron-sign-right
:before
{
content
:
"\f138"
;
}
.icon-comments
:before
{
content
:
"\f086"
;
}
.icon-double-angle-left
:before
{
content
:
"\f100"
;
}
.icon-download
:before
{
content
:
"\f01a"
;
}
.icon-envelope
:before
{
content
:
"\f0e0"
;
}
.icon-file
:before
{
content
:
"\f15b"
;
}
.icon-globe
:before
{
content
:
"\f0ac"
;
}
.icon-headphones
:before
{
content
:
"\f025"
;
}
.icon-home
:before
{
content
:
"\f015"
;
}
.icon-info-sign
:before
{
content
:
"\f05a"
;
}
.icon-microphone
:before
{
content
:
"\f130"
;
}
.icon-pause
:before
{
content
:
"\f04c"
;
}
.icon-play
:before
{
content
:
"\f04b"
;
}
.icon-play-sign
:before
{
content
:
"\f144"
;
}
.icon-plus-sign
:before
{
content
:
"\f055"
;
}
.icon-question-sign
:before
{
content
:
"\f059"
;
}
.icon-remove
:before
{
content
:
"\f00d"
;
}
.icon-rss
:before
{
content
:
"\f09e"
;
}
.icon-search
:before
{
content
:
"\f002"
;
}
.icon-share
:before
{
content
:
"\f045"
;
}
.icon-step-backward
:before
{
content
:
"\f048"
;
}
.icon-step-forward
:before
{
content
:
"\f051"
;
}
.icon-stop
:before
{
content
:
"\f04d"
;
}
.icon-trash
:before
{
content
:
"\f014"
;
}
.icon-volume-up
:before
{
content
:
"\f028"
;
}
panikweb_templates/templates/base.html
View file @
4025ac46
...
...
@@ -17,7 +17,6 @@
{% compress css %}
<link
rel=
"stylesheet"
href=
"{{ STATIC_URL }}css/reset.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"{{ STATIC_URL }}font-awesome/css/font-awesome.min.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"{{ STATIC_URL }}css/type.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"{{ STATIC_URL }}css/general.css"
type=
"text/css"
/>
<link
rel=
"stylesheet"
href=
"{{ STATIC_URL }}css/specifics.css"
type=
"text/css"
/>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment