Przeglądaj źródła

make intense text shadows softer

Riccardo Balbo 4 lat temu
rodzic
commit
035620d358
1 zmienionych plików z 21 dodań i 7 usunięć
  1. 21 7
      static/css/style.less

+ 21 - 7
static/css/style.less

@@ -196,16 +196,30 @@ nav li:before {
 
 .textShadowedIntense {
     text-shadow:
-        0 0 @textShadowIntense @textShadowColor,
-        0 0 @textShadowIntense @textShadowColor,
-        0 0 @textShadowIntense @textShadowColor,
-        0 0 @textShadowIntense @textShadowColor,
-        0 0 (@textShadowIntense*2) @textShadowColor,
-        0 0 (@textShadowIntense*2) @textShadowColor,
-        0 0 @textShadowIntense @textShadowColor;
+    0 0 (@textShadowIntense/2) @textShadowColor,
+    0 0 (@textShadowIntense/2) @textShadowColor,
+    0 0 (@textShadowIntense/2) @textShadowColor,
+
+
+    0 0 @textShadowIntense @textShadowColor,
+
+    0 0 (@textShadowIntense*2) @textShadowColor,
+    0 0 (@textShadowIntense*2) @textShadowColor,
+    0 0 (@textShadowIntense*4) @textShadowColor,
+    0 0 (@textShadowIntense*4) @textShadowColor,
+
+    
+        0 0 (@textShadowIntense/4) @foreground,
+        0 0 (@textShadowIntense/4) @foreground,
+        0 0 (@textShadowIntense/4) @foreground,
+        0 0 (@textShadowIntense/4) @foreground
+        
+
+        ;
 }
 
 
+
 #topmenu {
 
     background-color: @background;