changes in resources search, menu and tags
This commit is contained in:
parent
735709757b
commit
d36c307f52
File diff suppressed because one or more lines are too long
|
@ -1,74 +1,8 @@
|
|||
// search elements
|
||||
.search {
|
||||
.input-group {
|
||||
position: relative;
|
||||
border-radius: 4rem;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
.appear {
|
||||
right: 0;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
padding: 0.3rem 1rem;
|
||||
}
|
||||
}
|
||||
.input-group * {
|
||||
margin: 0;
|
||||
}
|
||||
.button {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
.appear {
|
||||
display:none;
|
||||
}
|
||||
input {
|
||||
&:active {
|
||||
border-color: $primary-color;
|
||||
background-color: $input-background-focus;
|
||||
}
|
||||
&:focus,&:focus-within{
|
||||
border-color: $primary-color;
|
||||
background-color: $input-background;
|
||||
}
|
||||
&:not(:placeholder-shown) {
|
||||
border:none;
|
||||
background-color: $input-background-focus;
|
||||
position: relative;
|
||||
padding-right: $global-padding * 9;
|
||||
+ .appear {
|
||||
display: block;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
z-index: 2;
|
||||
&:hover {
|
||||
color: $white;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
.hollow {
|
||||
border-color: $primary-color;
|
||||
color: $primary-color;
|
||||
&:after {
|
||||
}
|
||||
&:placeholder {
|
||||
color: scale-color($primary-color, $lightness: -20%);
|
||||
}
|
||||
&:hover {
|
||||
background-color: scale-color($primary-color, $lightness: 95%);
|
||||
}
|
||||
&:active {
|
||||
background-color: scale-color($primary-color, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
}
|
||||
//search block size in content
|
||||
article,.omekas-entry-content {
|
||||
.search{
|
||||
article,aside,.omekas-entry-content {
|
||||
.search,.widget_search{
|
||||
@include xy-grid();
|
||||
.input-group {
|
||||
.input-group,.search-form {
|
||||
@include breakpoint(small){
|
||||
@include xy-cell (12);
|
||||
margin-left: auto;
|
||||
|
@ -87,67 +21,188 @@ article,.omekas-entry-content {
|
|||
}
|
||||
}
|
||||
}
|
||||
// wordpress
|
||||
.search-form {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-content: center;
|
||||
.search-field {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
label {
|
||||
width: 40vw;
|
||||
max-width: 30rem;
|
||||
}
|
||||
input[type="search"] {
|
||||
padding-left: $global-padding;
|
||||
padding-right: $global-padding;
|
||||
border: $input-border;
|
||||
background-color: $input-background-focus;
|
||||
border-radius: $global-radius-archive;
|
||||
}
|
||||
input[type="submit"]{
|
||||
@extend button;
|
||||
width:0px;
|
||||
min-width: unset !important;
|
||||
height:0px;
|
||||
background-color: $input-background-focus;
|
||||
border-radius: $global-radius-archive;
|
||||
}
|
||||
&:active,&:focus,&:focus-within{
|
||||
label {
|
||||
width: calc(40vw + 10rem);
|
||||
margin-right: -10rem;
|
||||
// search elements
|
||||
.search {
|
||||
.input-group {
|
||||
position: relative;
|
||||
border-radius: $global-padding*4;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
.appear {
|
||||
right: 0;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
padding: $global-padding*0.3 $global-padding;
|
||||
}
|
||||
input[type="submit"] {
|
||||
width:auto;
|
||||
min-width: 10rem !important;
|
||||
height:auto;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
}
|
||||
input[type="search"] {
|
||||
padding-right: 11rem;
|
||||
}
|
||||
.input-group * {
|
||||
margin: 0;
|
||||
}
|
||||
.button {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
.appear {
|
||||
display:none;
|
||||
}
|
||||
input {
|
||||
border-radius: $global-radius-archive;
|
||||
&:active {
|
||||
border-color: $primary-color;
|
||||
background-color: $input-background-focus;
|
||||
&:not(:placeholder-shown) {
|
||||
border:none;
|
||||
background-color: $input-background-focus;
|
||||
color: $primary-color;
|
||||
//position: relative;
|
||||
//padding-right: $global-padding * 9;
|
||||
//+ .appear {
|
||||
// display: block;
|
||||
// background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
// z-index: 2;
|
||||
// &:hover {
|
||||
// color: $white;
|
||||
// background-color: $primary-color;
|
||||
// }
|
||||
//}
|
||||
}
|
||||
&:focus,&:focus-within{
|
||||
border-color: $input-background;
|
||||
background-color: $input-background;
|
||||
}
|
||||
&:not(:placeholder-shown) {
|
||||
border:none;
|
||||
background-color: $input-background-focus;
|
||||
position: relative;
|
||||
padding-right: $global-padding * 9;
|
||||
+ .appear {
|
||||
display: block;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
z-index: 2;
|
||||
&:hover {
|
||||
color: $white;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.hollow {
|
||||
border-color: $primary-color;
|
||||
color: $primary-color;
|
||||
&:after {
|
||||
}
|
||||
&::placeholder {
|
||||
color: scale-color($primary-color, $lightness: -20%);
|
||||
}
|
||||
&:hover {
|
||||
background-color: scale-color($primary-color, $lightness: 95%);
|
||||
}
|
||||
&:active {
|
||||
background-color: scale-color($primary-color, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
&-form {
|
||||
@extend .search;
|
||||
position: relative;
|
||||
min-width: 40vw;
|
||||
input:not(:placeholder-shown) {
|
||||
padding: $global-padding/2 $global-padding;
|
||||
}
|
||||
.search-submit {
|
||||
@extend button;
|
||||
padding: $global-padding/2 $global-padding;
|
||||
display:none;
|
||||
}
|
||||
.search-field {
|
||||
&:active,&:focus,&:not(:placeholder-shown) {
|
||||
padding-right: $global-padding * 8;
|
||||
}
|
||||
}
|
||||
label {
|
||||
width:100%;
|
||||
&:active,&:focus,&:focus-within {
|
||||
+ .search-submit {
|
||||
display: inline;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: auto;
|
||||
min-width: unset;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// wordpress
|
||||
.search-form {
|
||||
// display: flex;
|
||||
// justify-content: center;
|
||||
// align-content: center;
|
||||
// .search-field {
|
||||
// margin-bottom: 0;
|
||||
// }
|
||||
// label {
|
||||
// width: 40vw;
|
||||
// max-width: 30rem;
|
||||
// }
|
||||
// input {
|
||||
// border: $input-border;
|
||||
// &:active,&:focus,&:focus-within {
|
||||
// border: $input-border;
|
||||
// }
|
||||
// &.search-field {
|
||||
// border-color: $primary-color;
|
||||
// color: $primary-color;
|
||||
// &::after {
|
||||
// }
|
||||
// &::placeholder {
|
||||
// color: scale-color($primary-color, $lightness: -20%);
|
||||
// }
|
||||
// &:hover {
|
||||
// background-color: scale-color($primary-color, $lightness: 95%);
|
||||
// }
|
||||
// &:active {
|
||||
// background-color: scale-color($primary-color, $lightness: 85%);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// input[type="search"] {
|
||||
// padding-left: $global-padding;
|
||||
// padding-right: $global-padding;
|
||||
// border: $input-border;
|
||||
// border-radius: $global-radius-archive;
|
||||
// background-color: $input-background;
|
||||
// }
|
||||
// input[type="submit"]{
|
||||
// @extend button;
|
||||
// // width:0px;
|
||||
// min-width: unset !important;
|
||||
// // height:0px;
|
||||
// color: $white;
|
||||
// background-color: $input-background-focus;
|
||||
// border-radius: $global-radius-archive;
|
||||
// }
|
||||
// &:active{
|
||||
// input[type="submit"] {
|
||||
// background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
// }
|
||||
// input[type="search"] {
|
||||
// background-color: $input-background-focus;
|
||||
// }
|
||||
// }
|
||||
// &:focus,&:focus-within{
|
||||
// input[type="submit"] {
|
||||
// // width:auto;
|
||||
// // min-width: 10rem !important;
|
||||
// // height:auto;
|
||||
// background-color: $input-background;
|
||||
// }
|
||||
// input[type="search"] {
|
||||
// padding-right: 11rem;
|
||||
// border:$input-border;
|
||||
// // border-color: $primary-color;
|
||||
// background-color: $input-background;
|
||||
// &:not(:placeholder-shown) {
|
||||
// border:none;
|
||||
// background-color: $input-background-focus;
|
||||
// color: $primary-color;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}
|
||||
.hero {
|
||||
.search-form {
|
||||
input[type="submit"]{
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// contact form 7
|
||||
//
|
||||
|
||||
|
|
|
@ -362,7 +362,6 @@ main {
|
|||
}
|
||||
.widget_tag_cloud {
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
margin-left: $global-margin;
|
||||
$tags-background-color: scale-color($anchor-color, $lightness: 95%);
|
||||
a {
|
||||
|
@ -386,25 +385,40 @@ main {
|
|||
}
|
||||
&:hover{
|
||||
.tagcloud {
|
||||
top: 0;
|
||||
top: 1.6rem;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
@include breakpoint(small){
|
||||
width: 80vw;
|
||||
right: -1rem;
|
||||
text-align: right;
|
||||
}
|
||||
@include breakpoint(medium){
|
||||
width: 90vw;
|
||||
right: -15vw;
|
||||
}
|
||||
@include breakpoint(large){
|
||||
width: 90vw;
|
||||
right: -25vw;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
.tagcloud {
|
||||
position: absolute;
|
||||
visibility:hidden;
|
||||
opacity:0;
|
||||
transition: transform 0.5s;
|
||||
transition: transform 0.5s,background-color 0.5s;
|
||||
transform: translateY(-$global-padding);
|
||||
padding: $global-padding*3;
|
||||
height:0;
|
||||
width:50vw;
|
||||
background-color: $tags-background-color;
|
||||
padding: $global-padding;
|
||||
a {
|
||||
display: inline-block;
|
||||
background-color: $tags-background-color;
|
||||
padding:$global-padding/4 $global-padding/2;
|
||||
font-size: $global-font-size * 0.7 !important;
|
||||
&:before {
|
||||
content: '#';
|
||||
display: inline-block;
|
||||
|
|
|
@ -60,39 +60,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
// .widget_tag_cloud {
|
||||
// h6 {
|
||||
// display:none;
|
||||
// }
|
||||
// .tagcloud {
|
||||
// display: none;
|
||||
// padding: $global-padding*3;
|
||||
// width:50vw;
|
||||
// // max-width: 20rem;
|
||||
// a {
|
||||
// display: inline-block;
|
||||
// background-color: scale-color($anchor-color, $lightness: 90%);
|
||||
// padding:$global-padding/4 $global-padding/2;
|
||||
// &:before {
|
||||
// content: '#';
|
||||
// display: inline-block;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// &:before {
|
||||
// content: '#tags';
|
||||
// color: $primary-color;
|
||||
// background-color: scale-color($anchor-color, $lightness: 90%);
|
||||
// padding:$global-padding/4 $global-padding/2;
|
||||
// }
|
||||
// &:hover{
|
||||
// .tagcloud {
|
||||
// display: inline-block;
|
||||
// position: absolute;
|
||||
// top: 0;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
@include breakpoint(small){
|
||||
}
|
||||
@include breakpoint(medium){
|
||||
|
|
|
@ -1,74 +1,8 @@
|
|||
// search elements
|
||||
.search {
|
||||
.input-group {
|
||||
position: relative;
|
||||
border-radius: 4rem;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
.appear {
|
||||
right: 0;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
padding: 0.3rem 1rem;
|
||||
}
|
||||
}
|
||||
.input-group * {
|
||||
margin: 0;
|
||||
}
|
||||
.button {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
.appear {
|
||||
display:none;
|
||||
}
|
||||
input {
|
||||
&:active {
|
||||
border-color: $primary-color;
|
||||
background-color: $input-background-focus;
|
||||
}
|
||||
&:focus,&:focus-within{
|
||||
border-color: $primary-color;
|
||||
background-color: $input-background;
|
||||
}
|
||||
&:not(:placeholder-shown) {
|
||||
border:none;
|
||||
background-color: $input-background-focus;
|
||||
position: relative;
|
||||
padding-right: $global-padding * 9;
|
||||
+ .appear {
|
||||
display: block;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
z-index: 2;
|
||||
&:hover {
|
||||
color: $white;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
.hollow {
|
||||
border-color: $primary-color;
|
||||
color: $primary-color;
|
||||
&:after {
|
||||
}
|
||||
&:placeholder {
|
||||
color: scale-color($primary-color, $lightness: -20%);
|
||||
}
|
||||
&:hover {
|
||||
background-color: scale-color($primary-color, $lightness: 95%);
|
||||
}
|
||||
&:active {
|
||||
background-color: scale-color($primary-color, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
}
|
||||
//search block size in content
|
||||
article,.omekas-entry-content {
|
||||
.search{
|
||||
article,aside,.omekas-entry-content {
|
||||
.search,.widget_search{
|
||||
@include xy-grid();
|
||||
.input-group {
|
||||
.input-group,.search-form {
|
||||
@include breakpoint(small){
|
||||
@include xy-cell (12);
|
||||
margin-left: auto;
|
||||
|
@ -87,67 +21,188 @@ article,.omekas-entry-content {
|
|||
}
|
||||
}
|
||||
}
|
||||
// wordpress
|
||||
.search-form {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-content: center;
|
||||
.search-field {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
label {
|
||||
width: 40vw;
|
||||
max-width: 30rem;
|
||||
}
|
||||
input[type="search"] {
|
||||
padding-left: $global-padding;
|
||||
padding-right: $global-padding;
|
||||
border: $input-border;
|
||||
background-color: $input-background-focus;
|
||||
border-radius: $global-radius-archive;
|
||||
}
|
||||
input[type="submit"]{
|
||||
@extend button;
|
||||
width:0px;
|
||||
min-width: unset !important;
|
||||
height:0px;
|
||||
background-color: $input-background-focus;
|
||||
border-radius: $global-radius-archive;
|
||||
}
|
||||
&:active,&:focus,&:focus-within{
|
||||
label {
|
||||
width: calc(40vw + 10rem);
|
||||
margin-right: -10rem;
|
||||
// search elements
|
||||
.search {
|
||||
.input-group {
|
||||
position: relative;
|
||||
border-radius: $global-padding*4;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
.appear {
|
||||
right: 0;
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
padding: $global-padding*0.3 $global-padding;
|
||||
}
|
||||
input[type="submit"] {
|
||||
width:auto;
|
||||
min-width: 10rem !important;
|
||||
height:auto;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
}
|
||||
input[type="search"] {
|
||||
padding-right: 11rem;
|
||||
}
|
||||
.input-group * {
|
||||
margin: 0;
|
||||
}
|
||||
.button {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
.appear {
|
||||
display:none;
|
||||
}
|
||||
input {
|
||||
border-radius: $global-radius-archive;
|
||||
&:active {
|
||||
border-color: $primary-color;
|
||||
background-color: $input-background-focus;
|
||||
&:not(:placeholder-shown) {
|
||||
border:none;
|
||||
background-color: $input-background-focus;
|
||||
color: $primary-color;
|
||||
//position: relative;
|
||||
//padding-right: $global-padding * 9;
|
||||
//+ .appear {
|
||||
// display: block;
|
||||
// background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
// z-index: 2;
|
||||
// &:hover {
|
||||
// color: $white;
|
||||
// background-color: $primary-color;
|
||||
// }
|
||||
//}
|
||||
}
|
||||
&:focus,&:focus-within{
|
||||
border-color: $input-background;
|
||||
background-color: $input-background;
|
||||
}
|
||||
&:not(:placeholder-shown) {
|
||||
border:none;
|
||||
background-color: $input-background-focus;
|
||||
position: relative;
|
||||
padding-right: $global-padding * 9;
|
||||
+ .appear {
|
||||
display: block;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
z-index: 2;
|
||||
&:hover {
|
||||
color: $white;
|
||||
background-color: $primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.hollow {
|
||||
border-color: $primary-color;
|
||||
color: $primary-color;
|
||||
&:after {
|
||||
}
|
||||
&::placeholder {
|
||||
color: scale-color($primary-color, $lightness: -20%);
|
||||
}
|
||||
&:hover {
|
||||
background-color: scale-color($primary-color, $lightness: 95%);
|
||||
}
|
||||
&:active {
|
||||
background-color: scale-color($primary-color, $lightness: 85%);
|
||||
}
|
||||
}
|
||||
&-form {
|
||||
@extend .search;
|
||||
position: relative;
|
||||
min-width: 40vw;
|
||||
input:not(:placeholder-shown) {
|
||||
padding: $global-padding/2 $global-padding;
|
||||
}
|
||||
.search-submit {
|
||||
@extend button;
|
||||
padding: $global-padding/2 $global-padding;
|
||||
display:none;
|
||||
}
|
||||
.search-field {
|
||||
&:active,&:focus,&:not(:placeholder-shown) {
|
||||
padding-right: $global-padding * 8;
|
||||
}
|
||||
}
|
||||
label {
|
||||
width:100%;
|
||||
&:active,&:focus,&:focus-within {
|
||||
+ .search-submit {
|
||||
display: inline;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
width: auto;
|
||||
min-width: unset;
|
||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// wordpress
|
||||
.search-form {
|
||||
// display: flex;
|
||||
// justify-content: center;
|
||||
// align-content: center;
|
||||
// .search-field {
|
||||
// margin-bottom: 0;
|
||||
// }
|
||||
// label {
|
||||
// width: 40vw;
|
||||
// max-width: 30rem;
|
||||
// }
|
||||
// input {
|
||||
// border: $input-border;
|
||||
// &:active,&:focus,&:focus-within {
|
||||
// border: $input-border;
|
||||
// }
|
||||
// &.search-field {
|
||||
// border-color: $primary-color;
|
||||
// color: $primary-color;
|
||||
// &::after {
|
||||
// }
|
||||
// &::placeholder {
|
||||
// color: scale-color($primary-color, $lightness: -20%);
|
||||
// }
|
||||
// &:hover {
|
||||
// background-color: scale-color($primary-color, $lightness: 95%);
|
||||
// }
|
||||
// &:active {
|
||||
// background-color: scale-color($primary-color, $lightness: 85%);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// input[type="search"] {
|
||||
// padding-left: $global-padding;
|
||||
// padding-right: $global-padding;
|
||||
// border: $input-border;
|
||||
// border-radius: $global-radius-archive;
|
||||
// background-color: $input-background;
|
||||
// }
|
||||
// input[type="submit"]{
|
||||
// @extend button;
|
||||
// // width:0px;
|
||||
// min-width: unset !important;
|
||||
// // height:0px;
|
||||
// color: $white;
|
||||
// background-color: $input-background-focus;
|
||||
// border-radius: $global-radius-archive;
|
||||
// }
|
||||
// &:active{
|
||||
// input[type="submit"] {
|
||||
// background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||
// }
|
||||
// input[type="search"] {
|
||||
// background-color: $input-background-focus;
|
||||
// }
|
||||
// }
|
||||
// &:focus,&:focus-within{
|
||||
// input[type="submit"] {
|
||||
// // width:auto;
|
||||
// // min-width: 10rem !important;
|
||||
// // height:auto;
|
||||
// background-color: $input-background;
|
||||
// }
|
||||
// input[type="search"] {
|
||||
// padding-right: 11rem;
|
||||
// border:$input-border;
|
||||
// // border-color: $primary-color;
|
||||
// background-color: $input-background;
|
||||
// &:not(:placeholder-shown) {
|
||||
// border:none;
|
||||
// background-color: $input-background-focus;
|
||||
// color: $primary-color;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}
|
||||
.hero {
|
||||
.search-form {
|
||||
input[type="submit"]{
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// contact form 7
|
||||
//
|
||||
|
||||
|
|
|
@ -362,7 +362,6 @@ main {
|
|||
}
|
||||
.widget_tag_cloud {
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
margin-left: $global-margin;
|
||||
$tags-background-color: scale-color($anchor-color, $lightness: 95%);
|
||||
a {
|
||||
|
@ -386,25 +385,40 @@ main {
|
|||
}
|
||||
&:hover{
|
||||
.tagcloud {
|
||||
top: 0;
|
||||
top: 1.6rem;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
@include breakpoint(small){
|
||||
width: 80vw;
|
||||
right: -1rem;
|
||||
text-align: right;
|
||||
}
|
||||
@include breakpoint(medium){
|
||||
width: 90vw;
|
||||
right: -15vw;
|
||||
}
|
||||
@include breakpoint(large){
|
||||
width: 90vw;
|
||||
right: -25vw;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
.tagcloud {
|
||||
position: absolute;
|
||||
visibility:hidden;
|
||||
opacity:0;
|
||||
transition: transform 0.5s;
|
||||
transition: transform 0.5s,background-color 0.5s;
|
||||
transform: translateY(-$global-padding);
|
||||
padding: $global-padding*3;
|
||||
height:0;
|
||||
width:50vw;
|
||||
background-color: $tags-background-color;
|
||||
padding: $global-padding;
|
||||
a {
|
||||
display: inline-block;
|
||||
background-color: $tags-background-color;
|
||||
padding:$global-padding/4 $global-padding/2;
|
||||
font-size: $global-font-size * 0.7 !important;
|
||||
&:before {
|
||||
content: '#';
|
||||
display: inline-block;
|
||||
|
|
|
@ -60,39 +60,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
// .widget_tag_cloud {
|
||||
// h6 {
|
||||
// display:none;
|
||||
// }
|
||||
// .tagcloud {
|
||||
// display: none;
|
||||
// padding: $global-padding*3;
|
||||
// width:50vw;
|
||||
// // max-width: 20rem;
|
||||
// a {
|
||||
// display: inline-block;
|
||||
// background-color: scale-color($anchor-color, $lightness: 90%);
|
||||
// padding:$global-padding/4 $global-padding/2;
|
||||
// &:before {
|
||||
// content: '#';
|
||||
// display: inline-block;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// &:before {
|
||||
// content: '#tags';
|
||||
// color: $primary-color;
|
||||
// background-color: scale-color($anchor-color, $lightness: 90%);
|
||||
// padding:$global-padding/4 $global-padding/2;
|
||||
// }
|
||||
// &:hover{
|
||||
// .tagcloud {
|
||||
// display: inline-block;
|
||||
// position: absolute;
|
||||
// top: 0;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
@include breakpoint(small){
|
||||
}
|
||||
@include breakpoint(medium){
|
||||
|
|
Loading…
Reference in New Issue