Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHumberto Rocha <humrochagf@gmail.com>2019-08-09 15:13:38 +0300
committerHumberto Rocha <humrochagf@gmail.com>2019-08-09 15:13:38 +0300
commit2c4cbb8dd0dbaff7b0c5a7ce9f91e7e2cfcd70bd (patch)
treedf9f45227ccabbeee788f088aa4a1fc9928d2e43
parenta55919fd662dd0817f816d9a3c142b2929ee323d (diff)
fix links overrides
-rw-r--r--assets/sass/_global.scss50
1 files changed, 26 insertions, 24 deletions
diff --git a/assets/sass/_global.scss b/assets/sass/_global.scss
index b35c24c..5ea3a4e 100644
--- a/assets/sass/_global.scss
+++ b/assets/sass/_global.scss
@@ -16,36 +16,38 @@ body {
}
}
-p img, .videogif {
- width: 100%;
- margin-left: 0;
- margin-right: 0;
+main {
+ p a, li a {
+ border-bottom: 1px solid lighten($theme-color, 60%);
- @media screen and (min-width: 760px) {
- width: 70%;
- margin-left: 15%;
- margin-right: 15%;
- margin-top: 20px;
- margin-bottom: 20px;
+ &:hover, &:focus, &:active {
+ border-bottom: 1px solid $theme-color;
+ }
}
-}
-
-p a, li a {
- border-bottom: 1px solid lighten($theme-color, 60%);
- &:hover, &:focus, &:active {
- border-bottom: 1px solid $theme-color;
+ hr {
+ margin-top: 40px;
+ border: 0;
+ border-top: 1px solid lighten($theme-color, 90%);
}
-}
-hr {
- margin-top: 40px;
- border: 0;
- border-top: 1px solid lighten($theme-color, 90%);
-}
+ article iframe {
+ padding-bottom: 20px;
+ }
-article iframe {
- padding-bottom: 20px;
+ p img, .videogif {
+ width: 100%;
+ margin-left: 0;
+ margin-right: 0;
+
+ @media screen and (min-width: 760px) {
+ width: 70%;
+ margin-left: 15%;
+ margin-right: 15%;
+ margin-top: 20px;
+ margin-bottom: 20px;
+ }
+ }
}
.site-description {