diff --git a/css/conduct.css b/css/conduct.css index 5246ee0..d33279c 100644 --- a/css/conduct.css +++ b/css/conduct.css @@ -31,13 +31,12 @@ body { padding: 1px 10px; border-left: 3px solid #F44336; display: block; } - -a { - color: #bbb; - padding: 2px; - -webkit-transition: all .3s ease-in-out; - -o-transition: all .3s ease-in-out; - transition: all .3s ease-in-out; - border-bottom: 1px hidden #ccc; } - a:hover { - border-bottom: 1px solid #ccc; } + .content a { + color: #bbb; + padding: 2px; + -webkit-transition: all .3s ease-in-out; + -o-transition: all .3s ease-in-out; + transition: all .3s ease-in-out; + border-bottom: 1px hidden #ccc; } + .content a:hover { + border-bottom: 1px solid #ccc; } diff --git a/scss/conduct.scss b/scss/conduct.scss index 53d9d78..62d8819 100644 --- a/scss/conduct.scss +++ b/scss/conduct.scss @@ -40,9 +40,8 @@ body { border-left: 3px solid #F44336; display: block; } -} -a { + a { color: #bbb; padding: 2px; transition: all .3s ease-in-out; @@ -50,4 +49,6 @@ a { &:hover { border-bottom: 1px solid #ccc; } -} \ No newline at end of file +} +} +