Newer
Older
Copyright (C),2018, by C3SL(Centro de Computação Científica e
Software Live)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
@import '../../sass/styles';
.map-container {
width:700px;
height:100%;
max-height:600px;
margin-left: auto;
margin-right: auto;
border: 3px solid $dark-purple;
.map-frame {
border: 2px solid black;
height: 100%;
}
#map {
height: 100%;
}
border: 3px solid $dark-purple;
margin-left: auto;
margin-right: auto;
}
.row-hospital-selector{
height:600px;
overflow:hidden;
}
@media screen and (max-width: 800px) {
.map-container {
margin-top: 10px;
width:92%;
max-height:400px;
}
.hospital-selector{
max-height:600px;
}
.row-hospital-selector{
height:850px;
overflow:hidden;
}
.hosp-col{
max-height: 400px;
}
// [class*="col-"] {
// float: none;
// display: table-cell;
// vertical-align: top;
// padding:5px;
// min-width:100px;
// }
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
.arrow_box {
position: relative;
background: #fff;
border: 1px solid #003c88;
}
.arrow_box:after, .arrow_box:before {
top: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.arrow_box:after {
border-color: rgba(255, 255, 255, 0);
border-top-color: #fff;
border-width: 10px;
margin-left: -10px;
}
.arrow_box:before {
border-color: rgba(153, 153, 153, 0);
border-top-color: #003c88;
border-width: 11px;
margin-left: -11px;
}
.arrow_box {
border-radius: 5px;
padding: 10px;
margin-bottom: 50px;
}
.breadcrumb {
padding: 10px 16px;
list-style: none;
background-color: $white;
li {
display: inline;
font-size: 18px;
a {
color: $light-purple;
text-decoration: none;
&:hover {
color: $dark-purple;
text-decoration: none;
transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}
}
}
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
.register_button {
color: $text-light;
background-color: $light-purple;
text-decoration: none;
text-align: center;
font-size: 20px;
padding: 5px 20px;
margin-top: 0px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
display: block;
border-style: none;
border-radius: 4px;
&:hover {
background-color: $dark-purple;
text-decoration: none;
transition: cubic-bezier(0.075, 0.82, 0.165, 1);
cursor:pointer;
}
}