You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
634 B
46 lines
634 B
7 years ago
|
@import '../../variables.scss';
|
||
8 years ago
|
|
||
|
.channels {
|
||
8 years ago
|
width: 75%;
|
||
|
margin: 50px auto;
|
||
|
|
||
|
.header {
|
||
|
margin-bottom: 10px;
|
||
|
|
||
|
h3, .openChannel {
|
||
|
display: inline-block;
|
||
|
}
|
||
8 years ago
|
|
||
|
h3 {
|
||
8 years ago
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.openChannel {
|
||
|
float: right;
|
||
|
cursor: pointer;
|
||
|
|
||
|
svg {
|
||
|
padding: 3px;
|
||
|
border-radius: 50%;
|
||
|
border: 1px solid $main;
|
||
|
color: $main;
|
||
|
transition: all 0.25s;
|
||
|
|
||
|
&:hover {
|
||
|
border-color: darken($main, 10%);
|
||
|
color: darken($main, 10%);
|
||
|
}
|
||
|
}
|
||
8 years ago
|
}
|
||
8 years ago
|
}
|
||
|
|
||
|
h3 {
|
||
|
text-transform: uppercase;
|
||
|
color: $darkestgrey;
|
||
|
letter-spacing: 1.6px;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
8 years ago
|
}
|