2018-05-21 18:21:58 -04:00
|
|
|
/*
|
|
|
|
v2
|
|
|
|
CMS Generated Pages,
|
|
|
|
including About and Blog
|
|
|
|
*/
|
|
|
|
.cms-page {
|
2019-02-14 13:07:34 -05:00
|
|
|
padding-bottom: 0;
|
2018-09-11 08:46:38 -04:00
|
|
|
img {
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2018-06-21 18:05:14 -04:00
|
|
|
.btn-description {
|
2018-05-21 18:21:58 -04:00
|
|
|
margin-right: @margin-sm;
|
|
|
|
}
|
|
|
|
|
2019-02-14 13:07:34 -05:00
|
|
|
/*
|
|
|
|
Tabs
|
|
|
|
*/
|
2018-05-21 18:21:58 -04:00
|
|
|
.tab-content {
|
2021-09-21 09:46:44 -04:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
2018-05-21 18:21:58 -04:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
When on preview mode
|
|
|
|
*/
|
|
|
|
.cms-preview {
|
|
|
|
background-color: @blue;
|
2018-06-21 18:05:14 -04:00
|
|
|
color: white;
|
2018-05-21 18:21:58 -04:00
|
|
|
font-weight: bold;
|
|
|
|
height: @navbar-padding-vertical;
|
|
|
|
left: 0;
|
|
|
|
line-height: @navbar-padding-vertical;
|
|
|
|
opacity: 0.8;
|
|
|
|
position: fixed;
|
|
|
|
text-align: center;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
&:after {
|
|
|
|
content: 'Preview';
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-pane {
|
|
|
|
.row:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
quotes
|
|
|
|
*/
|
|
|
|
blockquote {
|
2019-02-14 13:07:34 -05:00
|
|
|
margin: 0;
|
2018-05-21 18:21:58 -04:00
|
|
|
/*
|
|
|
|
type.less sets <p> inline, so that quotation mark is inline
|
|
|
|
but sometimes we have multiple <p>,
|
|
|
|
so hide quotation mark from type.less and add one here
|
|
|
|
*/
|
|
|
|
&:before {
|
|
|
|
/* hide quotation from type.less */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
p:first-child {
|
|
|
|
/* below copied from type.less */
|
|
|
|
&:before {
|
|
|
|
content: open-quote;
|
|
|
|
font-size: @blockquote-font-size * 3;
|
|
|
|
color: @blockquote-border-color;
|
|
|
|
margin-right: 0.25em;
|
|
|
|
vertical-align: -0.4em;
|
|
|
|
line-height: 0.1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.quote-full-width {
|
|
|
|
img {
|
|
|
|
margin-right: @margin-sm;
|
|
|
|
margin-bottom: @margin-sm;
|
|
|
|
}
|
|
|
|
}
|
2018-09-14 11:48:56 -04:00
|
|
|
|
2019-02-18 08:39:14 -05:00
|
|
|
/*
|
|
|
|
Tables
|
|
|
|
*/
|
|
|
|
.table-styled {
|
|
|
|
overflow: hidden;
|
|
|
|
overflow-x: auto;
|
|
|
|
table {
|
|
|
|
background: white;
|
|
|
|
max-width: none;
|
2019-12-05 14:09:31 -05:00
|
|
|
th,
|
|
|
|
td {
|
2019-02-18 08:39:14 -05:00
|
|
|
border: 1px solid @gray-lighter;
|
|
|
|
padding: @padding-sm;
|
|
|
|
text-align: center;
|
|
|
|
word-break: normal;
|
|
|
|
}
|
|
|
|
}
|
2019-05-20 11:58:14 -04:00
|
|
|
}
|
2019-12-05 14:09:31 -05:00
|
|
|
.table-styled,
|
|
|
|
.features-table {
|
|
|
|
.fa-check-square,
|
|
|
|
.fa-check {
|
2019-02-18 08:39:14 -05:00
|
|
|
color: @ol-green;
|
|
|
|
}
|
|
|
|
}
|
2019-05-20 11:58:14 -04:00
|
|
|
.features-table {
|
|
|
|
max-width: none;
|
2019-12-05 14:09:31 -05:00
|
|
|
th,
|
|
|
|
td {
|
2019-05-20 11:58:14 -04:00
|
|
|
border: 1px solid @gray-lighter;
|
|
|
|
hyphens: auto;
|
|
|
|
padding: @padding-sm;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-12-05 14:09:31 -05:00
|
|
|
th,
|
|
|
|
td {
|
2019-05-20 11:58:14 -04:00
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
.btn {
|
|
|
|
max-width: 100%;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
&.left-align-first-col {
|
2019-12-05 14:09:31 -05:00
|
|
|
td,
|
|
|
|
th {
|
2019-05-20 11:58:14 -04:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
td + td,
|
|
|
|
th + th {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.hidden-row-above-xs {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: @screen-xs-max) {
|
2019-12-05 14:09:31 -05:00
|
|
|
tbody,
|
|
|
|
thead {
|
2019-05-20 11:58:14 -04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
|
2019-12-05 14:09:31 -05:00
|
|
|
td,
|
|
|
|
th {
|
2019-05-20 11:58:14 -04:00
|
|
|
display: block;
|
|
|
|
width: 25%;
|
|
|
|
}
|
|
|
|
tr:first-child {
|
|
|
|
th {
|
|
|
|
width: 50%;
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|
2019-05-20 11:58:14 -04:00
|
|
|
th:first-child {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
td:first-child {
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2019-12-05 14:09:31 -05:00
|
|
|
|
2019-05-20 11:58:14 -04:00
|
|
|
.hidden-row-xs {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.hidden-row-above-xs {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.table-header {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-18 08:39:14 -05:00
|
|
|
|
2018-09-17 11:45:59 -04:00
|
|
|
/*
|
|
|
|
universities page
|
|
|
|
*/
|
|
|
|
#universities-container {
|
|
|
|
padding: @padding-md;
|
|
|
|
width: 100%;
|
|
|
|
.row {
|
2018-10-19 10:02:08 -04:00
|
|
|
border-bottom: 1px solid @gray-lightest;
|
2018-09-17 11:45:59 -04:00
|
|
|
div {
|
|
|
|
padding: @padding-md;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.row:first-child {
|
|
|
|
// parent container contains padding
|
|
|
|
div {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.row:last-child {
|
2018-10-19 10:02:08 -04:00
|
|
|
border: 0;
|
2018-09-17 11:45:59 -04:00
|
|
|
// parent container contains padding
|
|
|
|
div {
|
|
|
|
border: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
// Logos
|
|
|
|
.uni-logo {
|
|
|
|
margin: 0 auto;
|
|
|
|
max-height: 55px;
|
|
|
|
min-width: 55px;
|
|
|
|
}
|
|
|
|
.university-claim-btn {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2018-10-19 10:02:08 -04:00
|
|
|
@media only screen and (min-width: @screen-xs-min) {
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
.row {
|
|
|
|
display: table-row;
|
|
|
|
div {
|
|
|
|
border-bottom: 1px solid @gray-lightest;
|
|
|
|
display: table-cell;
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-17 11:45:59 -04:00
|
|
|
}
|
|
|
|
|
2018-09-14 11:48:56 -04:00
|
|
|
/*
|
|
|
|
videos
|
|
|
|
*/
|
|
|
|
video {
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2019-12-05 14:09:31 -05:00
|
|
|
}
|