瀏覽代碼

форматы ol, время работы, h4/h6/h7, h3 на странице врача

anatoly 7 年之前
父節點
當前提交
96a8d7d336

+ 25 - 5
src/files/css/main.css

@@ -7429,7 +7429,7 @@ footer .copyright .logo {
   font-weight: 700; }
 
 .contacts-container .center-content .work-time .text {
-  font-size: 16px; }
+  font-size: 15px; }
 
 .contacts-container .center-content .to-doctors {
   display: block; }
@@ -8720,6 +8720,18 @@ footer .copyright .logo {
   margin: 20px 0;
   font-weight: 600; }
 
+h4 {
+  font: "Cuprum", Impact, "Charcoal CY", sans-serif;
+  font-size: 17px; }
+
+h6 {
+  font: "Cuprum", Impact, "Charcoal CY", sans-serif;
+  font-size: 15px; }
+
+h7 {
+  font: "Cuprum", Impact, "Charcoal CY", sans-serif;
+  font-size: 13px; }
+
 .text-page__text p, .special-page__article p, .full-news__text p, .index-about p {
   font-family: "Open Sans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
   font-size: 15px;
@@ -8773,16 +8785,16 @@ footer .copyright .logo {
   list-style-type: none; }
   .text-page__text ol li, .special-page__article ol li, .full-news__text ol li {
     counter-increment: step-counter;
-    font-size: 16px;
+    font-size: 15px;
     font-family: "Open Sans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
     color: #404040;
     line-height: 1.5; }
     .text-page__text ol li:before, .special-page__article ol li:before, .full-news__text ol li:before {
       content: counter(step-counter) ".";
-      font-size: 11px;
+      font-size: 15px;
       font-family: "Open Sans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
-      color: #004d7b;
-      font-weight: bold; }
+      color: #929292;
+      padding-right: 5px; }
 
 .text-page__text table, .special-page__article table, .full-news__text table {
   width: 100%;
@@ -9631,6 +9643,10 @@ img {
     margin-right: 20px; }
     .full-news__text .col2__item:last-child {
       margin-right: 0; }
+  .full-news__text a {
+    text-decoration: none; }
+    .full-news__text a:hover {
+      text-decoration: underline; }
 .full-news__other-materials {
   margin: 20px 0; }
   .full-news__other-materials-read-all {
@@ -10088,6 +10104,10 @@ img {
   line-height: 1; }
 .person-page__text-info {
   font-size: 14px; }
+  .person-page__text-info h3 {
+    font-size: 15px;
+    font-weight: 600;
+    line-height: 26px; }
 .person-page__awards {
   display: flex;
   flex-direction: row;

文件差異過大導致無法顯示
+ 0 - 0
src/files/css/main.css.map


+ 1 - 1
src/files/scss/_base-style.scss

@@ -1024,7 +1024,7 @@ footer .copyright .logo {
 }
 
 .contacts-container .center-content .work-time .text {
-    font-size: 16px;
+    font-size: 15px;
 }
 
 .contacts-container .center-content .to-doctors {

+ 7 - 1
src/files/scss/_full-news.scss

@@ -156,6 +156,12 @@
                 margin-right: 0;
             }
         }
+        a {
+            text-decoration: none;
+            &:hover {
+                text-decoration: underline;
+            }
+        }
     }
 
     &__other-materials {
@@ -217,7 +223,7 @@
                 position: absolute;
                 bottom: 0;
                 color: #fff;
-                background: rgba(0,0,0,0.4);
+                background: rgba(0, 0, 0, 0.4);
                 width: 100%;
                 padding: 5px;
             }

+ 5 - 0
src/files/scss/_person-page.scss

@@ -17,6 +17,11 @@
 
     &__text-info {
         font-size: 14px;
+        h3{
+            font-size: 15px;
+            font-weight: 600;
+            line-height: 26px;
+        }
     }
 
     &__awards {

+ 20 - 4
src/files/scss/_tags.scss

@@ -12,6 +12,21 @@
     font-weight: 600;
 }
 
+h4 {
+    font: $fontcuprum;
+    font-size: 17px;
+}
+
+h6 {
+    font: $fontcuprum;
+    font-size: 15px;
+}
+
+h7 {
+    font: $fontcuprum;
+    font-size: 13px;
+}
+
 %p {
     font-family: $fontopensans;
     font-size: 15px;
@@ -72,17 +87,18 @@
 
     li {
         counter-increment: step-counter;
-        font-size: 16px;
+        font-size: 15px;
         font-family: $fontopensans;
         color: #404040;
         line-height: 1.5;
 
         &:before {
             content: counter(step-counter) ".";
-            font-size: 11px;
+            font-size: 15px;
             font-family: $fontopensans;
-            color: #004d7b;
-            font-weight: bold;
+            color: #929292;
+            //font-weight: bold;
+            padding-right: 5px;
         }
     }
 }

部分文件因文件數量過多而無法顯示