accounts-frontend/src/components/accounts/accountSwitcher.scss

94 lines
1.6 KiB
SCSS
Raw Normal View History

2016-11-06 01:53:56 +05:30
@import '~components/ui/colors.scss';
@import '~components/ui/fonts.scss';
$borderColor: #EEE;
2016-11-06 01:53:56 +05:30
.accountSwitcher {
background: #fff;
color: #444;
2016-11-06 01:53:56 +05:30
text-align: left;
width: 205px;
$border: 1px solid $borderColor;
border-left: $border;
border-right: $border;
2016-11-06 01:53:56 +05:30
}
.lightAccountSwitcher {
background: #fff;
}
.darkAccountSwitcher {
background: $black;
}
.item {
padding: 15px;
border-bottom: 1px solid $borderColor;
}
.accountIcon {
composes: minecraft-character from 'components/ui/icons.scss';
font-size: 40px;
color: $green;
float: left;
}
.activeAccountInfo {
margin-left: 29px;
}
.activeAccountUsername {
font-size: 20px;
line-height: normal; // button style override
color: $green;
}
.activeAccountEmail {
font-size: 10px;
color: #999;
line-height: normal; // button style override
font-family: $font-family-base; // button style override
}
.links {
margin-top: 6px;
}
.link {
line-height: normal; // button style override
font-size: 12px; // button style override
margin-bottom: 3px;
&: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: #777;
color: #777;
}
}
}
.logoutIcon {
composes: exit from 'components/ui/icons.scss';
color: #cdcdcd;
}
2016-11-06 01:53:56 +05:30
.nextIcon {
composes: arrowRight from 'components/ui/icons.scss';
color: #cdcdcd;
}