2018-10-28 02:02:00 +00:00
|
|
|
.settings__session {
|
2018-10-29 17:55:10 +00:00
|
|
|
border: 1px solid var(--accent-colour);
|
|
|
|
border-radius: 2px;
|
|
|
|
overflow: hidden;
|
2018-11-19 22:48:01 +00:00
|
|
|
margin: 4px;
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&--current {
|
|
|
|
background-color: var(--accent-colour);
|
2018-03-26 01:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 22:48:01 +00:00
|
|
|
&--current &__container {
|
|
|
|
background-color: fade(#111, 80%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__important {
|
2018-08-15 13:36:40 +00:00
|
|
|
display: flex;
|
2018-10-29 17:55:10 +00:00
|
|
|
align-items: center;
|
|
|
|
font-size: 1.4em;
|
|
|
|
z-index: 2;
|
2018-08-15 13:36:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__flag {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin: 10px;
|
|
|
|
margin-right: 0;
|
2018-03-26 01:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__description {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__actions {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__action {
|
|
|
|
border: 0;
|
|
|
|
background: transparent;
|
|
|
|
color: inherit;
|
|
|
|
font: inherit;
|
|
|
|
text-shadow: inherit;
|
|
|
|
padding: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color .2s;
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&:hover {
|
|
|
|
color: var(--accent-colour);
|
2018-03-26 01:55:25 +00:00
|
|
|
}
|
2018-10-29 17:55:10 +00:00
|
|
|
}
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__details {
|
|
|
|
z-index: 1;
|
|
|
|
margin: 10px;
|
|
|
|
margin-top: -5px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2018-03-26 01:55:25 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__detail {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 2px;
|
|
|
|
min-width: 120px;
|
2018-03-26 03:18:20 +00:00
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__title {
|
|
|
|
border-bottom: 1px solid var(--accent-colour);
|
|
|
|
font-weight: 700;
|
|
|
|
padding: 1px 5px;
|
2018-03-26 01:55:25 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 17:55:10 +00:00
|
|
|
&__value {
|
|
|
|
padding: 1px 5px;
|
2018-03-26 01:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|