Bladeren bron

start mep

Kévin Tessier 5 jaren geleden
bovenliggende
commit
0cd1042973

+ 1 - 1
logs/popularity/daily.json

@@ -1 +1 @@
-{"01-08-2018":19,"02-08-2018":424,"20-08-2018":22}
+{"01-08-2018":19,"02-08-2018":424,"20-08-2018":102}

+ 1 - 1
logs/popularity/monthly.json

@@ -1 +1 @@
-{"08-2018":465}
+{"08-2018":545}

+ 1 - 1
logs/popularity/totals.json

@@ -1 +1 @@
-{"\/":190,"\/projets":99,"\/news":79,"\/a-propros":10,"\/projets-n-1":1,"\/projets\/projets-n-1":82,"\/projets\/projet-n-2":4}
+{"\/":234,"\/projets":99,"\/news":79,"\/a-propros":11,"\/projets-n-1":1,"\/projets\/projets-n-1":113,"\/projets\/projet-n-2":8}

+ 1 - 1
logs/popularity/visitors.json

@@ -1 +1 @@
-{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1534766117}
+{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1534769688}

File diff suppressed because it is too large
+ 1 - 3
user/themes/hehe/css-compiled/template.css


File diff suppressed because it is too large
+ 0 - 0
user/themes/hehe/css-compiled/template.min.css


+ 0 - 13
user/themes/hehe/scss/configuration/_config.scss

@@ -3,16 +3,3 @@
 @include font-face($roboto_regular, $file2, $family2, $category);//1
 @include font-face($roboto_medium, $file3, $family3, $category);//1
 @include font-face($roboto_bold, $file4, $family4, $category);//1
-
-//color
-$lightpink: #fad7d7;
-$lightpinkIE: rgb(250, 215, 215) ;
-
-$lightgrey: #dcdce6;
-$lightblue: #00ffff;
-$elecblue: #0000ff;
-
-//tailletuille
-$W33: calc(100%/3 - 5px);
-
-$W66: calc(100%/3 * 2);

+ 3 - 3
user/themes/hehe/scss/template.scss

@@ -6,13 +6,13 @@
 @import "template/reset";
 
 // Typography
-// @import "template/typography";
+@import "template/typography";
 
 // Header
-// @import "template/header";
+@import "template/header";
 
 //section
-// @import "template/section";
+@import "template/section";
 // @import "template/section-media-queries";
 
 //sectiongrid

+ 18 - 1
user/themes/hehe/scss/template/_header.scss

@@ -1 +1,18 @@
-
+header{
+  position: fixed;
+  width: 100%;
+  height: 35px;
+  top: 0;
+  display: flex;
+  justify-content: space-between;
+  background-color: white;
+  ul{
+    display: flex;
+  }
+  ul.tags{
+    display: none;
+  }
+  ul.visible{
+    display: flex;
+  }
+}

+ 1 - 8
user/themes/hehe/scss/template/_reset.scss

@@ -27,13 +27,6 @@ html, body{
 	font-size: 16px;
 }
 
-h1{
-  a{
-    font-family: $roboto_medium;
-    font-size: 5em;
-  }
-}
-
 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure,
 footer, header, hgroup, menu, nav, section {
@@ -60,7 +53,7 @@ blockquote, q {
 
 img{
 	width: 100%;
-	height: 100%;
+	height: auto;
 	vertical-align: bottom;
 }
 

+ 42 - 0
user/themes/hehe/scss/template/_section.scss

@@ -0,0 +1,42 @@
+#start{
+  margin-top: 35px;
+  .item{
+    display: flex;
+    .card{
+      position: relative;
+      width: calc(100% / 3);
+      .card-image:hover{
+        transition: all 1s;
+        mix-blend-mode: multiply;
+        filter: contrast(10) grayscale(1);
+        opacity: .95;
+      }
+      .card-title{
+        position: absolute;
+        top: 50%;
+        left: 50%;
+        transform: translateX(-50%);
+      }
+    }
+  }
+  #items{
+    .content-item{
+      .e-content{
+        display: flex;
+      }
+      .media{
+        width: calc((100% / 3) + (100% / 3));
+      }
+      .txt{
+        position: fixed;
+        right: 0;
+        height: 100%;
+        width: calc(100% / 3);
+        .taxonomy{
+          position:fixed;
+          bottom: 0;
+        }
+      }
+    }
+  }
+}

+ 28 - 0
user/themes/hehe/scss/template/_typography.scss

@@ -0,0 +1,28 @@
+h1{
+  a{
+    font-family: $roboto_regular;
+    font-size: 1rem;
+  }
+}
+
+h2{
+  a{
+    font-family:$roboto_medium;
+    font-size:1.5rem;
+  }
+}
+
+nav{
+  li{
+    a{
+      font-family:$roboto_regular;
+      font-size:0.9rem;
+      text-transform: uppercase;
+    }
+  }
+}
+
+p{
+  font-family: $roboto_light;
+  font-size: 0.8rem;
+}

Some files were not shown because too many files changed in this diff