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