Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,164 +1 @@
|
|
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 |
-
}
|
|
|
1 |
+
#MainMenu { visibility: hidden; } footer { visibility: hidden; } body { background-color: rgb(245, 250, 255); } @font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; } @font-face { font-family: 'Montserrat'; src: url('fonts/Montserrat-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; } html, body, [class*="css"] { font-family: Montserrat, sans-serif; } .vertical { border-left: 1px solid #ecf1f8; height: 500px; position: absolute; left: 50%; margin-left: -3px; top: 0; } .stButton>button { background: #000; border: solid 2px #000; border-radius: 8px; box-shadow: unset; color: #fff; cursor: pointer; display: inline-block; font-weight: 400; min-height: 42px; outline: 0; padding: 0.625rem 1.2rem; text-align: center; text-decoration: none; text-transform: uppercase; width: 100%; max-width: 100%; } .stButton>button:hover { border-color: rgb(0, 0, 0); background-color: #ffffff00; color: #000000; } .stButton>button:active { border-color: rgb(0, 0, 0); background-color: #ffffff00; color: #000000; } div.row-widget.stRadio>div { /* flex-direction: row; */ align-items: stretch; } div.row-widget.stRadio>div[role="radiogroup"]>label[data-baseweb="radio"]>div:first-child { background-color: #037aff; } .stTextInput>div>div>input { background-color: #ffffff; box-shadow: 0 8px 18px 0 rgba(0, 8, 18, 0.05); } .stTextArea>div>div { background-color: #ffffff; box-shadow: 0 8px 18px 0 rgba(0, 8, 18, 0.05); } div[role="listbox"] ul { background-color: #ffffff; } div[data-baseweb="select"]>div { background-color: #ffffff; } .success { background-color: #ffffff; color: #333333; padding: 0.25rem 0.5rem; border-radius: 4px; line-height: 24px; } .opportunity { background-color: #E6F4FF; color: #333333; padding: 0.50rem 1rem; border-radius: 4px; line-height: 24px; /* Inside auto layout */ flex: none; order: 1; align-self: stretch; flex-grow: 0; } .warning { background-color: #FFFBE6; color: #333333; padding: 0.50rem 1rem; border-radius: 4px; line-height: 24px; /* Inside auto layout */ flex: none; order: 1; align-self: stretch; flex-grow: 0; } .technology { background-color: #ffffff; color: #333333; padding: 0.50rem 1rem; border-radius: 4px; line-height: 24px; /* Inside auto layout */ flex: none; order: 1; align-self: stretch; flex-grow: 0; } .disclosure { font-size: 14px; line-height: 22px; color: rgba(0, 0, 0, 0.45); padding: 0.50rem 1rem; border-radius: 4px; /* Inside auto layout */ flex: none; order: 1; align-self: stretch; flex-grow: 0; } .viewerBadge_container__1QSob { visibility: hidden; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|