Spaces:
Running
Running
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#MainMenu {
|
2 |
+
visibility: hidden;
|
3 |
+
}
|
4 |
+
|
5 |
+
footer {
|
6 |
+
visibility: hidden;
|
7 |
+
}
|
8 |
+
|
9 |
+
body {
|
10 |
+
background-color: rgb(245, 250, 255);
|
11 |
+
}
|
12 |
+
|
13 |
+
@font-face {
|
14 |
+
font-family: 'Montserrat';
|
15 |
+
src: url('fonts/Montserrat-Regular.ttf') format('truetype');
|
16 |
+
font-weight: 400;
|
17 |
+
font-style: normal;
|
18 |
+
}
|
19 |
+
|
20 |
+
@font-face {
|
21 |
+
font-family: 'Montserrat';
|
22 |
+
src: url('fonts/Montserrat-Thin.ttf') format('truetype');
|
23 |
+
font-weight: 100;
|
24 |
+
font-style: normal;
|
25 |
+
}
|
26 |
+
|
27 |
+
html,
|
28 |
+
body,
|
29 |
+
[class*="css"] {
|
30 |
+
font-family: Montserrat, sans-serif;
|
31 |
+
}
|
32 |
+
|
33 |
+
.vertical {
|
34 |
+
border-left: 1px solid #ecf1f8;
|
35 |
+
height: 500px;
|
36 |
+
position: absolute;
|
37 |
+
left: 50%;
|
38 |
+
margin-left: -3px;
|
39 |
+
top: 0;
|
40 |
+
}
|
41 |
+
|
42 |
+
.stButton>button {
|
43 |
+
|
44 |
+
background: #000;
|
45 |
+
border: solid 2px #000;
|
46 |
+
border-radius: 8px;
|
47 |
+
box-shadow: unset;
|
48 |
+
color: #fff;
|
49 |
+
cursor: pointer;
|
50 |
+
display: inline-block;
|
51 |
+
font-weight: 400;
|
52 |
+
min-height: 42px;
|
53 |
+
outline: 0;
|
54 |
+
padding: 0.625rem 1.2rem;
|
55 |
+
text-align: center;
|
56 |
+
text-decoration: none;
|
57 |
+
text-transform: uppercase;
|
58 |
+
width: 100%;
|
59 |
+
max-width: 100%;
|
60 |
+
}
|
61 |
+
|
62 |
+
.stButton>button:hover {
|
63 |
+
border-color: rgb(0, 0, 0);
|
64 |
+
background-color: #ffffff00;
|
65 |
+
color: #000000;
|
66 |
+
}
|
67 |
+
|
68 |
+
.stButton>button:active {
|
69 |
+
border-color: rgb(0, 0, 0);
|
70 |
+
background-color: #ffffff00;
|
71 |
+
color: #000000;
|
72 |
+
}
|
73 |
+
|
74 |
+
|
75 |
+
div.row-widget.stRadio>div {
|
76 |
+
/* flex-direction: row; */
|
77 |
+
align-items: stretch;
|
78 |
+
}
|
79 |
+
|
80 |
+
div.row-widget.stRadio>div[role="radiogroup"]>label[data-baseweb="radio"]>div:first-child {
|
81 |
+
background-color: #037aff;
|
82 |
+
}
|
83 |
+
|
84 |
+
.stTextInput>div>div>input {
|
85 |
+
background-color: #ffffff;
|
86 |
+
box-shadow: 0 8px 18px 0 rgba(0, 8, 18, 0.05);
|
87 |
+
}
|
88 |
+
|
89 |
+
.stTextArea>div>div {
|
90 |
+
background-color: #ffffff;
|
91 |
+
box-shadow: 0 8px 18px 0 rgba(0, 8, 18, 0.05);
|
92 |
+
}
|
93 |
+
|
94 |
+
div[role="listbox"] ul {
|
95 |
+
background-color: #ffffff;
|
96 |
+
}
|
97 |
+
|
98 |
+
div[data-baseweb="select"]>div {
|
99 |
+
background-color: #ffffff;
|
100 |
+
}
|
101 |
+
|
102 |
+
.success {
|
103 |
+
background-color: #ffffff;
|
104 |
+
color: #333333;
|
105 |
+
padding: 0.25rem 0.5rem;
|
106 |
+
border-radius: 4px;
|
107 |
+
line-height: 24px;
|
108 |
+
}
|
109 |
+
|
110 |
+
.opportunity {
|
111 |
+
background-color: #E6F4FF;
|
112 |
+
color: #333333;
|
113 |
+
padding: 0.50rem 1rem;
|
114 |
+
border-radius: 4px;
|
115 |
+
line-height: 24px;
|
116 |
+
/* Inside auto layout */
|
117 |
+
flex: none;
|
118 |
+
order: 1;
|
119 |
+
align-self: stretch;
|
120 |
+
flex-grow: 0;
|
121 |
+
}
|
122 |
+
|
123 |
+
.warning {
|
124 |
+
background-color: #FFFBE6;
|
125 |
+
color: #333333;
|
126 |
+
padding: 0.50rem 1rem;
|
127 |
+
border-radius: 4px;
|
128 |
+
line-height: 24px;
|
129 |
+
/* Inside auto layout */
|
130 |
+
flex: none;
|
131 |
+
order: 1;
|
132 |
+
align-self: stretch;
|
133 |
+
flex-grow: 0;
|
134 |
+
}
|
135 |
+
|
136 |
+
.technology {
|
137 |
+
background-color: #ffffff;
|
138 |
+
color: #333333;
|
139 |
+
padding: 0.50rem 1rem;
|
140 |
+
border-radius: 4px;
|
141 |
+
line-height: 24px;
|
142 |
+
/* Inside auto layout */
|
143 |
+
flex: none;
|
144 |
+
order: 1;
|
145 |
+
align-self: stretch;
|
146 |
+
flex-grow: 0;
|
147 |
+
}
|
148 |
+
|
149 |
+
.disclosure {
|
150 |
+
font-size: 14px;
|
151 |
+
line-height: 22px;
|
152 |
+
color: rgba(0, 0, 0, 0.45);
|
153 |
+
padding: 0.50rem 1rem;
|
154 |
+
border-radius: 4px;
|
155 |
+
/* Inside auto layout */
|
156 |
+
flex: none;
|
157 |
+
order: 1;
|
158 |
+
align-self: stretch;
|
159 |
+
flex-grow: 0;
|
160 |
+
}
|
161 |
+
|
162 |
+
.viewerBadge_container__1QSob {
|
163 |
+
visibility: hidden;
|
164 |
+
}
|