mirror of https://github.com/Squidex/squidex.git
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.
48 lines
811 B
48 lines
811 B
@import '_vars';
|
|
@import '_mixins';
|
|
|
|
.badge {
|
|
@include circle(1.3rem);
|
|
font-size: 80%;
|
|
margin-right: .25rem;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.section {
|
|
margin-top: 2rem;
|
|
|
|
p {
|
|
padding-left: 1.75rem;
|
|
}
|
|
}
|
|
|
|
.option {
|
|
@include border-radius;
|
|
background: none;
|
|
border: 1px solid $color-border;
|
|
cursor: pointer;
|
|
margin-top: .5rem;
|
|
padding: 1rem;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
border-color: darken($color-border, 10%);
|
|
}
|
|
|
|
i {
|
|
@include absolute(1.6rem, 1rem, auto, auto);
|
|
color: $color-border;
|
|
font-size: 1.8rem;
|
|
font-weight: 300;
|
|
}
|
|
}
|
|
|
|
.access-token {
|
|
font-family: monospace;
|
|
font-size: 1rem;
|
|
font-weight: normal;
|
|
height: 10rem;
|
|
resize: none;
|
|
}
|