Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reducing the size of the icons to toggle the side panels #20

Merged
merged 3 commits into from
Jul 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 18 additions & 18 deletions evo-calendar/css/evo-calendar.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
* Evo Calendar - Simple and Modern-looking Event Calendar Plugin
*
* Licensed under the MIT License
*
*
* Version: 1.0.0
* Author: Edlyn Villegas
* Docs: https://edlynvillegas.github.com/evo-calendar
* Repo: https://github.com/edlynvillegas/evo-calendar
* Issues: https://github.com/edlynvillegas/evo-calendar/issues
*
*
*/

*, ::after, ::before {
Expand Down Expand Up @@ -66,9 +66,9 @@ input:focus, textarea:focus, button:focus {
}
.calendar-sidebar > span#sidebarToggler {
position: absolute;
width: 70px;
height: 70px;
bottom: 0;
width: 40px;
height: 40px;
top: 0;
right: 1px;
-webkit-transform: translate(100%, 0);
-ms-transform: translate(100%, 0);
Expand Down Expand Up @@ -198,7 +198,7 @@ tr.calendar-header .calendar-header-day {
}

tr.calendar-body {

}
tr.calendar-body .calendar-day {
padding: 10px 0;
Expand Down Expand Up @@ -287,8 +287,8 @@ tr.calendar-body .calendar-day .day[disabled] {
}
#eventListToggler {
position: absolute;
width: 70px;
height: 70px;
width: 40px;
height: 40px;
top: 0;
right: 0;
background-color: #8773c1;
Expand Down Expand Up @@ -414,7 +414,7 @@ button.icon-button {
button.icon-button > span.bars {
position: relative;
width: 100%;
height: 6px;
height: 4px;
display: block;
background-color: #fff;
}
Expand All @@ -423,22 +423,22 @@ button.icon-button > span.bars::after {
content: '';
position: absolute;
width: 100%;
height: 6px;
height: 4px;
display: block;
background-color: #fff;
}
button.icon-button > span.bars::before {
top: -12px;
top: -8px;
}
button.icon-button > span.bars::after {
bottom: -12px;
bottom: -8px;
}
button.icon-button > span.chevron-arrow-left {
display: inline-block;
border-right: 6px solid #fff;
border-bottom: 6px solid #fff;
width: 33px;
height: 33px;
width: 18px;
height: 18px;
-webkit-transform: rotate(-225deg);
-ms-transform: rotate(-225deg);
transform: rotate(-225deg);
Expand All @@ -447,8 +447,8 @@ button.icon-button > span.chevron-arrow-right {
display: block;
border-right: 6px solid #fff;
border-bottom: 6px solid #fff;
width: 33px;
height: 33px;
width: 18px;
height: 18px;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
Expand Down Expand Up @@ -539,8 +539,8 @@ button.icon-button > span.chevron-arrow-right {
button.icon-button > span.chevron-arrow-right {
border-right-width: 4px;
border-bottom-width: 4px;
width: 22px;
height: 22px;
width: 18px;
height: 18px;
}
.event-container > .event-icon {
padding: 15px;
Expand Down
7 changes: 3 additions & 4 deletions evo-calendar/css/evo-calendar.min.css

Large diffs are not rendered by default.

42 changes: 24 additions & 18 deletions evo-calendar/css/evo-calendar.royal-navy.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
* Evo Calendar - Simple and Modern-looking Event Calendar Plugin
*
* Licensed under the MIT License
*
*
* Version: 1.0.0
* Author: Edlyn Villegas
* Docs: https://edlynvillegas.github.com/evo-calendar
* Repo: https://github.com/edlynvillegas/evo-calendar
* Issues: https://github.com/edlynvillegas/evo-calendar/issues
*
*
*/

/* Evo Calendar - Theme: Royal Navy */
Expand Down Expand Up @@ -38,9 +38,9 @@
background-color: rgba(0, 0, 0, 0.35);
}
.royal-navy .calendar-sidebar > span#sidebarToggler {
width: 60px;
height: 60px;
bottom: 10px;
width: 35px;
height: 35px;
top: 10px;
right: 0;
background-color: #f7be16;
border-radius: 50%;
Expand All @@ -62,13 +62,14 @@
.royal-navy button.icon-button > span.bars,
.royal-navy button.icon-button > span.bars::before,
.royal-navy button.icon-button > span.bars::after {
height: 5px;
height: 4px;
}
.royal-navy button.icon-button > span.bars::before {
top: -9px;
.royal-navy button.icon-button > span.bars {
margin-top: -12px;
}
.royal-navy button.icon-button > span.bars::before,
.royal-navy button.icon-button > span.bars::after {
bottom: -10px;
margin-top: 0px;
}
.royal-navy .calendar-inner {
color: #164255;
Expand All @@ -88,8 +89,8 @@
box-shadow: 0 5px 10px -3px #216583;
}
.royal-navy #eventListToggler {
width: 60px;
height: 60px;
width: 35px;
height: 35px;
top: 10px;
background-color: #f7be16;
border-radius: 50%;
Expand All @@ -106,8 +107,10 @@
.royal-navy #eventListToggler button.icon-button > span.chevron-arrow-right {
border-right: 5px solid #fff;
border-bottom: 5px solid #fff;
width: 23px;
height: 23px;
width: 18px;
height: 18px;
margin-left: -9px;
margin-top: -20px;
}
.royal-navy .calendar-events {
padding: 50px 30px 40px 30px;
Expand Down Expand Up @@ -148,11 +151,12 @@
.royal-navy button.icon-button > span.bars::after {
height: 4px;
}
.royal-navy button.icon-button > span.bars::before {
top: -8px;
.royal-navy button.icon-button > span.bars {
margin-top: 4px;
}
.royal-navy button.icon-button > span.bars::before,
.royal-navy button.icon-button > span.bars::after {
bottom: -9px;
margin-top: 0px;
}
.royal-navy .calendar-inner::after {
background-color: rgba(44, 81, 97, 0.5);
Expand Down Expand Up @@ -191,8 +195,10 @@
transform: translateX(calc(-100% - 10px));
}
.royal-navy #eventListToggler button.icon-button > span.chevron-arrow-right {
width: 20px;
height: 20px;
width: 18px;
height: 18px;
margin-left: 0px;
margin-top: 0px;
}
}
@media screen and (max-width: 425px) {
Expand Down
7 changes: 3 additions & 4 deletions evo-calendar/css/evo-calendar.royal-navy.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.