Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
development:dokuwiki:css_tweaks [2020/08/29 13:33]
kalenpw created
— (current)
Line 1: Line 1:
-====== CSS Tweaks ====== 
  
----- 
-Add to ''./conf/userstyles.css'' 
- 
-<code css> 
-* { 
-    font-size: .95rem; 
-    letter-spacing: .5px; 
-    font-family: Tahoma, Geneva, sans-serif; 
-    line-height: 1.5; 
-} 
- 
-/* inline code more padding */ 
-code { 
-    padding: 2px 5px 2px 5px; 
-} 
- 
-/* kbd plugin neater padding */ 
-kbd { 
-    padding: 2px 5px 2px 5px !important; 
-} 
- 
-/* needed to override the * font */ 
-.code *{ 
-    font-family: Consolas,"Andale Mono WT","Andale Mono","Bitstream Vera Sans Mono","Nimbus Mono L",Monaco,"Courier New",monospace !important; 
-} 
- 
-/* wiki name by logo */ 
-#dokuwiki__header h1 span { 
-    font-size: 2rem; 
-} 
- 
- 
-/* hierarchy of pages */ 
-.youarehere { 
-    border-bottom: 1px solid #ccc; 
-} 
-.youarehere .bchead { 
-    display: none; 
-} 
-.youarehere span { 
-    font-size: 1rem; 
-} 
- 
-/* history of pages visited */ 
-.breadcrumbs .trace { 
-    display: none; 
-} 
- 
-</code>