You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
3.0 KiB
176 lines
3.0 KiB
//pager |
|
.js-pager__items { |
|
position: relative; |
|
|
|
position: relative; |
|
margin: 0; |
|
padding: 1rem 0; |
|
list-style: none; |
|
list-style-type: none; |
|
clear: both; |
|
text-align: center; |
|
li { |
|
display: inline-block; |
|
padding: 12px 0; |
|
|
|
a { |
|
padding: 8px 14px; |
|
color: #fff; |
|
background: var(--dark); |
|
} |
|
a:hover, |
|
.is-active a { |
|
background: var(--primary); |
|
color: #fff; |
|
} |
|
} |
|
} |
|
.pager__item { |
|
} |
|
//search-bar |
|
#edit-submit-dataset-search { |
|
//display: none; |
|
background-color: var(--dark-grey); |
|
} |
|
form#views-exposed-form-dataset-search-page-1 { |
|
display: flex; |
|
justify-content: center; |
|
} |
|
.js-form-item-search-api-fulltext { |
|
margin: 0; |
|
} |
|
|
|
input#edit-search-api-fulltext { |
|
height: 54px; |
|
width:100%; |
|
} |
|
/* Components -> Social icons */ |
|
.footer-social { |
|
padding: 1rem 0; |
|
} |
|
.social-icons { |
|
position: relative; |
|
margin: 0; |
|
padding: 0; |
|
list-style: none; |
|
} |
|
.social-icons li { |
|
display: inline-block; |
|
margin: 0; |
|
} |
|
.social-icons li a { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
width: 44px; |
|
height: 44px; |
|
border: 2px solid #000000; |
|
border-radius: 6px; |
|
-webkit-transition: all 0.3s ease; |
|
-o-transition: all 0.3s ease; |
|
transition: all 0.3s ease; |
|
} |
|
.social-icons li a:hover { |
|
border: 2px solid var(--primary); |
|
} |
|
.social-icons i { |
|
padding: 10px; |
|
} |
|
/* components -> Scroll To Top. */ |
|
.scrolltop { |
|
background: var(--primary); |
|
color: #000000; |
|
transition: all 0.3s ease; |
|
} |
|
.scrolltop:hover { |
|
background: var(--secondary); |
|
color: #ffffff; |
|
} |
|
//accordionJs |
|
#accordion { |
|
.accordion_question * { |
|
margin: 0; |
|
font-weight: bold; |
|
} |
|
|
|
.accordion_answer * { |
|
margin: 0; |
|
} |
|
//p { |
|
//margin: 0; |
|
//} |
|
} |
|
form#node-data-management-plan-form { |
|
td { |
|
padding: 1rem; |
|
} |
|
td.field-multiple-drag { |
|
padding: 0; |
|
padding-top: 1rem; |
|
} |
|
margin-top: 1rem; |
|
|
|
.button, |
|
.button, |
|
button, |
|
[type='button'], |
|
[type='reset'], |
|
[type='submit'] { |
|
background-color: #ccc; |
|
color: initial; |
|
border: 1px solid var(--upei-red); |
|
border-radius: 4px; |
|
-webkit-transition: all 0.4s linear; |
|
-o-transition: all 0.4s linear; |
|
transition: all 0.4s linear; |
|
padding: 0 5px; |
|
} |
|
button { |
|
//background-color: #fff; |
|
} |
|
} |
|
.footer-bottom-blocks .button { |
|
background: var(--upei-green); |
|
border: 4px solid var(--upei-yello); |
|
padding: 0 9px; |
|
} |
|
|
|
//node tabs |
|
// |
|
/* Style the tab */ |
|
.tab { |
|
overflow: hidden; |
|
border: 1px solid #ccc; |
|
background-color: #f1f1f1; |
|
} |
|
|
|
/* Style the buttons that are used to open the tab content */ |
|
.tab button { |
|
background-color: inherit; |
|
float: left; |
|
border: none; |
|
outline: none; |
|
cursor: pointer; |
|
padding: 14px 16px; |
|
transition: 0.3s; |
|
color: #333; |
|
border-radius: 0; |
|
} |
|
|
|
/* Change background color of buttons on hover */ |
|
.tab button:hover { |
|
background-color: #ddd; |
|
} |
|
|
|
/* Create an active/current tablink class */ |
|
.tab button.active { |
|
background-color: #ccc; |
|
} |
|
|
|
/* Style the tab content */ |
|
.tabcontent { |
|
display: none; |
|
padding: 6px 12px; |
|
border: 1px solid #ccc; |
|
border-top: none; |
|
}
|
|
|