69 lines
1.1 KiB
CSS
69 lines
1.1 KiB
CSS
body {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
line-height: 1.6;
|
|
font-size: 18px;
|
|
color: #003636;
|
|
background-color: #F8F8F8;
|
|
max-width: 1024px;
|
|
margin: auto;
|
|
}
|
|
|
|
.pageheader {
|
|
max-width: 960px;
|
|
margin: auto;
|
|
}
|
|
|
|
.error {
|
|
background-color: red;
|
|
}
|
|
|
|
.success {
|
|
background-color: rgb(149, 167, 82);
|
|
}
|
|
|
|
.curvedbottom {
|
|
border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
|
|
#addnewchannelform {
|
|
width: inherit;
|
|
margin: auto;
|
|
}
|
|
|
|
.tinytext10px{ font-size: 10px; }
|
|
.tinytext12px{ font-size: 12px; }
|
|
.tinytext14px{ font-size: 14px; }
|
|
.tinytext16px{ font-size: 16px; }
|
|
.tinytext18px{ font-size: 18px; }
|
|
|
|
[v-cloak] {
|
|
display: none;
|
|
}
|
|
|
|
.fade-enter-active, .fade-leave-active {
|
|
transition: opacity 0.75s;
|
|
}
|
|
|
|
.fade-enter, .fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.apistatusicon {
|
|
animation-duration: 1s;
|
|
animation-name: spinny;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
@keyframes spinny {
|
|
from {
|
|
transform: rotate(-15deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(15deg);
|
|
}
|
|
}
|