Преглед изворни кода

Merge branch 'imp/css-on-content'

DricomDragon пре 1 година
родитељ
комит
6b763fa4bb
1 измењених фајлова са 26 додато и 0 уклоњено
  1. 26 0
      src/include/css/custom/main.css

+ 26 - 0
src/include/css/custom/main.css

@@ -102,10 +102,24 @@ h4 {
 }
 
 /* Link color */
+/* > Internal links */
 main a {
     color: #1e7e34;
 }
 
+main a:hover {
+    color: #004D40;
+}
+
+/* > External links */
+main a[href^="http"] {
+    color: #0056b3;
+}
+
+main a[href^="http"]:hover {
+    color: #0040ff;
+}
+
 /* Footer */
 .footer a {
     color: #1c7430;
@@ -136,3 +150,15 @@ table tbody + tbody {
     border-top: 2px solid #dee2e6;
 }
 
+figure {
+    text-align: center;
+}
+
+figure > img { /* img-fluid */
+    max-width: 100%;
+    height: auto;
+}
+
+figcaption {
+    color: #5e5e5e;
+}