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