浏览代码

sousligne

Kévin Tessier 5 年之前
父节点
当前提交
c3b59bceee

+ 1 - 1
logs/popularity/daily.json

@@ -1 +1 @@
-{"01-08-2018":19,"02-08-2018":424,"20-08-2018":112,"21-08-2018":214,"22-08-2018":440,"24-08-2018":68}
+{"01-08-2018":19,"02-08-2018":424,"20-08-2018":112,"21-08-2018":214,"22-08-2018":440,"24-08-2018":112}

+ 1 - 1
logs/popularity/monthly.json

@@ -1 +1 @@
-{"08-2018":1277}
+{"08-2018":1321}

+ 1 - 1
logs/popularity/totals.json

@@ -1 +1 @@
-{"\/":685,"\/projets":99,"\/news":137,"\/a-propros":50,"\/projets-n-1":1,"\/projets\/projets-n-1":268,"\/projets\/projet-n-2":27,"\/projets\/projets-n-2":4,"\/projets\/projets-n":6}
+{"\/":695,"\/projets":99,"\/news":141,"\/a-propros":52,"\/projets-n-1":1,"\/projets\/projets-n-1":292,"\/projets\/projet-n-2":29,"\/projets\/projets-n-2":4,"\/projets\/projets-n":8}

+ 1 - 1
logs/popularity/visitors.json

@@ -1 +1 @@
-{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1535100639}
+{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1535101698}

文件差异内容过多而无法显示
+ 14 - 2
user/themes/hehe/css-compiled/template.css


文件差异内容过多而无法显示
+ 0 - 0
user/themes/hehe/css-compiled/template.min.css


+ 46 - 4
user/themes/hehe/scss/template/_typography.scss

@@ -20,9 +20,19 @@ h3{
   font-size: 0.8rem;
   text-transform: uppercase;
   a{
-    background: rgb(0,255,0);
     font-weight: normal;
-
+    position: relative;
+    &::after{
+      content: " ";
+      background: rgb(0, 255, 0);
+      position: absolute;
+      top: 5px;
+      left: 0;
+      height: 9px;
+      width: 100%;
+      margin: auto;
+      z-index: -1;
+    }
   }
 }
 
@@ -52,9 +62,19 @@ p{
   font-size: 0.8rem;
   margin-bottom: 10px;
   a{
-    background: rgb(0,255,0);
     font-weight: normal;
-
+    position: relative;
+    &::after{
+      content: " ";
+      background: rgb(0, 255, 0);
+      position: absolute;
+      top: 5px;
+      left: 0;
+      height: 9px;
+      width: 100%;
+      margin: auto;
+      z-index: -1;
+    }
   }
 }
 
@@ -65,6 +85,28 @@ p{
     text-transform: uppercase;
     font-weight: normal;
   }
+  a{
+    position: relative;
+    &::after{
+      transition: width 0.5s;
+      content: " ";
+      position: absolute;
+      width: 0%;
+      height: 10px;
+      z-index: -1;
+      left: 0;
+      margin: auto;
+      top: 4px;
+    }
+  }
+  a:hover{
+    position: relative;
+    &::after{
+      background: rgb(0, 255, 0);
+      transition: width 0.5s;
+      width: 100%;
+    }
+  }
 }
 
 .news{

部分文件因为文件数量过多而无法显示