File size: 1,624 Bytes
e65a994 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Raleway, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.logo {
width: 180px;
}
.title {
font-weight: 600;
text-align: left;
color: black;
font-size: 18px;
}
.alert,
#component-2,
#component-3 {
padding: 24px;
color: black;
background-color: #f4f8fb;
border: 1px solid #d6dce7;
border-radius: 8px;
box-shadow: 0px 6px 15px rgb(0 0 0 / 2%), 0px 2px 5px rgb(0 0 0 / 4%);
}
ol {
list-style: disc;
}
.alert__info {
background-color: #f4f8fb;
color: #323552;
}
.alert__warning {
background-color: #fffae5;
color: #917115;
border: 1px solid #e4cf2b;
}
#pw {
-webkit-text-security: disc;
}
/* unvisited link */
a:link {
color: #48DFDD;
}
/* visited link */
a:visited {
color: #48DFDD;
}
/* mouse over link */
a:hover {
color: #48DFDD;
}
/* selected link */
a:active {
color: #48DFDD;
}
li {
margin-left: 1em;
}
.apikey {
}
.entity-list {
color: #48DFDD;
font-size: 16px
}
.entity-elt {
color: black
}.istopic {
color: #48DFDD;
}
.topic-L0 {
font-size: 30px;
text-indent: 0px;
}
.topic-L1 {
font-size: 25px;
text-indent: 18px;
}
.topic-L2 {
font-size: 20px;
text-indent: 36px;
}
.topic-L3 {
font-size: 15px;
text-indent: 54px;
}
.topic-L4 {
font-size: 15px;
text-indent: 72px;
}
.topic-L5 {
font-size: 15px;
text-indent: 90px;
}
.topic-L6 {
font-size: 15px;
text-indent: 108px;
}
.topic-L7 {
font-size: 15px;
text-indent: 126px;
}
.topic-L8 {
font-size: 15px;
text-indent: 144px;
}
.topic-L9 {
font-size: 15px;
text-indent: 162px;
}
|