sbkwgh 8 rokov pred
rodič
commit
11a899c7fd
1 zmenil súbory, kde vykonal 39 pridanie a 0 odobranie
  1. 39 0
      src/assets/scss/elementStyles.scss

+ 39 - 0
src/assets/scss/elementStyles.scss

@@ -0,0 +1,39 @@
+@import './variables.scss';
+
+pre {
+	background-color: $color__gray--primary;
+	padding: 0.5rem;
+}
+
+a {
+	text-decoration: none;
+	font-weight: 500;
+	color: $color__orange--darkest;
+	position: relative;
+
+	&::after {
+		content: '';
+		height: 0.0625rem;
+		background-color: $color__orange--darkest;
+		bottom: -0.125rem;
+		width: 100%;
+		left: 0;
+		position: absolute;
+	}
+
+ 	&:hover, &:visited {
+ 		color: $color__orange--darker;
+ 		&::after {
+ 			background-color: $color__orange--darker;
+ 		}
+ 	}
+}
+
+blockquote {
+	background-color: $color__gray--primary;
+	border-left: thick solid $color__gray--darkest;
+
+	& * {
+		padding: 0.5rem;
+	}
+}