diff options
| -rw-r--r-- | static/scss/index.scss | 19 | 
1 files changed, 11 insertions, 8 deletions
| diff --git a/static/scss/index.scss b/static/scss/index.scss index a971100..2874897 100644 --- a/static/scss/index.scss +++ b/static/scss/index.scss @@ -11,6 +11,14 @@  ::selection {@include selection;}  ::-moz-selection {@include selection;} +@mixin indian-flag-bg { +  color: #232627; +  background: linear-gradient(118deg, rgba(255,147,0,1) 0%, rgba(255,255,255,1) 50%, rgba(10,199,40,1) 100%); +  a { +    color: #232627 !important; +  } +} +  body {    line-height: 1.5;    margin: 0; @@ -28,14 +36,10 @@ body {  }  #section-1 { -  //background-color: #56355D; +  background-color: #56355D; +  color: #ffffff; -  // Indian flag theme -  color: #232627; -  background: linear-gradient(118deg, rgba(255,147,0,1) 0%, rgba(255,255,255,1) 50%, rgba(10,199,40,1) 100%); -  a { -    color: #232627; -  } +  //@include indian-flag-bg;  }  .img-l, .img-r { @@ -88,7 +92,6 @@ img {      }      a {        color: white; -      // color: #232627; // Indian flag theme      }    }  } |