diff options
Diffstat (limited to '')
-rw-r--r-- | source/css/theme.css | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/source/css/theme.css b/source/css/theme.css index 1b245620..ca4fe40b 100644 --- a/source/css/theme.css +++ b/source/css/theme.css @@ -12,6 +12,17 @@ font-style: normal; } +@font-face { + font-family: 'awesome'; + src: url('/fonts/font-awesome/fonts/fontawesome-webfont.eot'); + src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/fontawesome-webfont.woff') format('woff'), + url('../fonts/fontawesome-webfont.ttf') format('truetype'), + url('../fonts/fontawesome-webfont.svg#fontawesome-webfont') format('svg'); + font-weight: normal; + font-style: normal; +} + /*** Main theme ***/ body { @@ -110,8 +121,20 @@ only screen and ( min-resolution: 1.25dppx) { content: "by neodarz"; } -.nav li { +li { + list-style: none; +} + +ul li:before { + content: "\25b6 \00a0"; +} +.lia li:before { + list-style: none; + content: "" !important; +} + +.nav li { list-style: none; } @@ -265,6 +288,10 @@ ul { padding-left: 16px; } +p { + padding: 7px 0 7px 0; +} + blockquote { margin: 0; padding: 0 1em; @@ -388,6 +415,25 @@ table { width: 100% !important; } +.skill-table { + text-align:left; + text-decoration: none; + list-style: none; +} + +.skill-table tr td ul li { + list-style: none; +} + +.skill-table tr td ul li::before { + content: ""; +} + +.odd { + background-color: #131313; + border: 1px solid white; +} + .ouer { display: block; } |