mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-27 23:40:28 +05:30
Образованы базовые стили для ссылок
This commit is contained in:
parent
befc058a3c
commit
bdbc34b163
@ -83,19 +83,6 @@ $lightBorderColor: #eee;
|
||||
&:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
border-bottom: 1px dotted #666;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #aaa;
|
||||
color: #777;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.accountInfo {
|
||||
|
@ -45,12 +45,9 @@
|
||||
|
||||
a {
|
||||
color: lighten($font-color, 10%);
|
||||
border-bottom: 1px dotted #666;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
border-bottom-color: #666;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #777;
|
||||
color: $font-color;
|
||||
}
|
||||
}
|
||||
|
@ -6,16 +6,4 @@
|
||||
color: #444;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
|
||||
a {
|
||||
color: #444;
|
||||
border-bottom: 1px dotted #444;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #777;
|
||||
color: #777;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5,13 +5,6 @@
|
||||
|
||||
a {
|
||||
color: #666;
|
||||
border-bottom: 1px dotted #666;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #777;
|
||||
color: #777;
|
||||
}
|
||||
border-bottom-color: #666;
|
||||
}
|
||||
}
|
||||
|
@ -118,14 +118,7 @@
|
||||
|
||||
a {
|
||||
color: #9a9a9a;
|
||||
border-bottom: 1px dotted #9a9a9a;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #777;
|
||||
color: #777;
|
||||
}
|
||||
border-bottom-color: #9a9a9a;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,6 +76,7 @@ $formColumnWidth: 416px;
|
||||
.paramAction {
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.paramEditIcon {
|
||||
@ -97,9 +98,9 @@ $formColumnWidth: 416px;
|
||||
line-height: 1.2;
|
||||
|
||||
a {
|
||||
color: $red;
|
||||
border-bottom: 1px dashed transparent;
|
||||
transition: .25s;
|
||||
color: $red!important;
|
||||
border-bottom-color: transparent;
|
||||
border-bottom-style: dashed;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: lighter($red);
|
||||
|
@ -15,6 +15,7 @@
|
||||
height: 25px;
|
||||
padding: 15px;
|
||||
font-size: 25px;
|
||||
border-bottom: none;
|
||||
|
||||
color: #ccc;
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
composes: button;
|
||||
|
||||
@if ($textColor != $defaultButtonTextColor) {
|
||||
color: $textColor;
|
||||
color: $textColor!important;
|
||||
}
|
||||
|
||||
background-color: $backgroundColor;
|
||||
@ -29,7 +29,7 @@
|
||||
border: none;
|
||||
|
||||
font-family: $font-family-title;
|
||||
color: $defaultButtonTextColor;
|
||||
color: $defaultButtonTextColor!important;
|
||||
font-size: 18px;
|
||||
line-height: 50px;
|
||||
text-decoration: none;
|
||||
|
@ -142,9 +142,7 @@
|
||||
margin: 3px 0;
|
||||
|
||||
a {
|
||||
border-bottom: 1px dotted rgba($red, 0.75);
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
border-bottom-color: rgba($red, 0.75);
|
||||
color: $red;
|
||||
|
||||
&:hover {
|
||||
|
@ -51,10 +51,8 @@ $bodyTopBottomPadding: 15px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #fff;
|
||||
border-bottom: 1px dotted rgba(#fff, 0.75);
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
color: #fff!important;
|
||||
border-bottom-color: rgba(#fff, 0.75);
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: rgba(#fff, 0.5);
|
||||
|
@ -21,7 +21,15 @@ b {
|
||||
}
|
||||
|
||||
a {
|
||||
color: #444;
|
||||
border-bottom: 1px dotted #444;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #777;
|
||||
color: #777;
|
||||
}
|
||||
}
|
||||
|
||||
ul,
|
||||
|
@ -187,16 +187,4 @@
|
||||
font-size: 16px;
|
||||
margin-top: 5px;
|
||||
color: #9a9a9a;
|
||||
|
||||
a {
|
||||
color: #666;
|
||||
border-bottom: 1px dotted #666;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #777;
|
||||
color: #777;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -40,10 +40,11 @@ $userBarHeight: 50px;
|
||||
padding: 0 20px;
|
||||
display: inline-block;
|
||||
background: darker($green);
|
||||
border-bottom: none;
|
||||
|
||||
font-family: $font-family-title;
|
||||
font-size: 33px;
|
||||
color: #fff;
|
||||
color: #fff!important;
|
||||
}
|
||||
|
||||
.body {
|
||||
|
@ -84,9 +84,7 @@
|
||||
|
||||
a {
|
||||
color: #444;
|
||||
border-bottom: 1px dotted #aaa;
|
||||
text-decoration: none;
|
||||
transition: .25s;
|
||||
border-bottom-color: #aaa;
|
||||
|
||||
&:hover {
|
||||
border-bottom-color: #444
|
||||
|
Loading…
Reference in New Issue
Block a user