-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
382 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Meshki v1.3.3 | ||
# Meshki v1.4.0 | ||
# Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
# http://meshki.borderliner.ir/ | ||
# Free to use under the MIT license. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -175,8 +175,7 @@ input[type=checkbox]+label.checkbox:before, input[type=radio]+label.radio:before | |
/* Sidenav starts from the right */ | ||
.sidenav { | ||
left: auto; | ||
right: -1px; | ||
border-left: 1px solid #818181; | ||
right: 0px; | ||
} | ||
|
||
/* Different padding of RTL Sidenav */ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -39,6 +39,8 @@ input[type="button"] { | |
color: #E1E1E1; | ||
border: 2px solid #E1E1E1; | ||
line-height: normal !important; /* Fix Midori bug */ | ||
/* Button expands out of boundary bug */ | ||
max-width: 98%; | ||
} | ||
|
||
a.button.small, | ||
|
@@ -261,7 +263,7 @@ input[type="button"].warning:active { | |
} | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -317,7 +319,7 @@ pre.filled > code { | |
color: #000; | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -333,20 +335,13 @@ footer, .footer { | |
background-color: #111; | ||
border-top: 2px solid #E1E1E1; | ||
margin: 25px 0 0 0; | ||
padding: 25px 50px; | ||
padding: 25px 50px 0 50px; | ||
text-align: center; | ||
} | ||
|
||
/* Remove bottom padding in compact mode */ | ||
footer.compact, .footer.compact { | ||
padding-bottom: 0px; | ||
} | ||
|
||
/* Remove bottom margins of columns in compact mode */ | ||
footer.compact .column, | ||
.footer.compact .column, | ||
footer.compact .columns, | ||
.footer.compact .columns { | ||
/* Remove bottom margins of columns */ | ||
footer .col, | ||
.footer .col { | ||
margin-bottom: 0px; | ||
} | ||
|
||
|
@@ -363,7 +358,7 @@ footer .row, | |
} | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -468,8 +463,10 @@ legend { | |
|
||
/* Fieldset normalization */ | ||
fieldset { | ||
border-width: 0; | ||
padding: 0; | ||
border: 2px solid #E1E1E1 !important; | ||
border-radius: 5px; | ||
padding: 20px !important; | ||
margin: 10px 5px !important; | ||
} | ||
|
||
/* Checkbox and Radio normalization */ | ||
|
@@ -538,8 +535,108 @@ input[type="radio"]:checked + label.radio:before { | |
input[type="checkbox"]:focus + label.checkbox, input[type="radio"]:focus + label.radio { | ||
outline: none !important; | ||
} | ||
|
||
/* Style input range */ | ||
input[type=range] { | ||
-webkit-appearance: none; | ||
margin: 0 5px; | ||
background-color: transparent; | ||
} | ||
|
||
input[type=range]:focus { | ||
outline: none; | ||
} | ||
|
||
input[type=range]::-webkit-slider-runnable-track { | ||
width: 100%; | ||
height: 26px; | ||
cursor: pointer; | ||
background: #222; | ||
border-radius: 25px; | ||
border: 2px solid #E1E1E1; | ||
} | ||
|
||
input[type=range]::-webkit-slider-thumb { | ||
height: 20px; | ||
width: 20px; | ||
border-radius: 25px; | ||
background-color: #E1E1E1; | ||
cursor: pointer; | ||
-webkit-appearance: none; | ||
margin-top: 1px; | ||
border: 2px solid transparent; | ||
transition: background-color .3s, border-color .3s; | ||
} | ||
|
||
input[type=range]:focus::-webkit-slider-thumb, | ||
input[type=range]:hover::-webkit-slider-thumb { | ||
background-color: #55acee; | ||
border-color: #E1E1E1; | ||
} | ||
|
||
input[type=range]::-moz-range-track { | ||
width: 100%; | ||
height: 23px; | ||
cursor: pointer; | ||
background-color: #222; | ||
border-radius: 25px; | ||
border: 2px solid #E1E1E1; | ||
} | ||
|
||
input[type=range]::-moz-range-thumb { | ||
height: 17px; | ||
width: 17px; | ||
border-radius: 25px; | ||
background-color: #E1E1E1; | ||
border: 2px solid transparent; | ||
cursor: pointer; | ||
transition: background-color .3s, border-color .3s; | ||
} | ||
|
||
input[type=range]:focus::-moz-range-thumb, | ||
input[type=range]:hover::-moz-range-thumb { | ||
background-color: #55acee; | ||
border-color: #E1E1E1; | ||
} | ||
|
||
/* Fix Firefox outline bug */ | ||
input[type=range]::-moz-focus-outer { | ||
border: 0; | ||
} | ||
|
||
input[type=range]::-ms-track { | ||
width: 100%; | ||
height: 26px; | ||
cursor: pointer; | ||
background-color: transparent; | ||
border-color: transparent; | ||
color: transparent; | ||
} | ||
|
||
input[type=range]::-ms-fill-lower, | ||
input[type=range]::-ms-fill-upper { | ||
background-color: #222; | ||
border: 2px solid #E1E1E1; | ||
border-radius: 50px; | ||
} | ||
|
||
input[type=range]::-ms-thumb { | ||
height: 20px; | ||
width: 20px; | ||
border-radius: 25px; | ||
background-color: #E1E1E1; | ||
cursor: pointer; | ||
border: 2px solid transparent; | ||
transition: background-color .3s, border-color .3s; | ||
} | ||
|
||
input[type=range]:focus::-ms-thumb, | ||
input[type=range]:hover::-ms-thumb { | ||
background-color: #55acee; | ||
border-color: #E1E1E1; | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -641,7 +738,7 @@ input[type="checkbox"]:focus + label.checkbox, input[type="radio"]:focus + label | |
.offset-by-one-half.col { margin-left: 52%; } | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -675,7 +772,7 @@ li { | |
margin-bottom: 1rem; | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -865,7 +962,7 @@ compatibility reasons. | |
/* Larger than Desktop HD */ | ||
@media (min-width: 1200px) {} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -876,6 +973,11 @@ compatibility reasons. | |
–––––––––––––––––––––––––––––––––––––––––––––––––– */ | ||
|
||
/* General attributes */ | ||
|
||
nav, .nav { | ||
height: 0; | ||
} | ||
|
||
nav ul, | ||
.nav ul { | ||
width: 100%; | ||
|
@@ -1478,7 +1580,7 @@ template { | |
display: none; | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -1496,9 +1598,8 @@ template { | |
z-index: 10; /* Stays on top of everything, unless a modal is implemented */ | ||
top: 0; | ||
left: -1px; | ||
background-color: #111; | ||
background-color: #000; | ||
padding-top: 15px; | ||
border-right: 1px solid #818181; | ||
overflow-x: hidden; | ||
transition: 0.5s; | ||
} | ||
|
@@ -1577,7 +1678,7 @@ template { | |
} | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -1632,7 +1733,7 @@ table.hover > tbody tr:hover { | |
background-color: #404040; | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
@@ -1669,7 +1770,7 @@ p { | |
margin-top: 0; | ||
} | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Meshki v1.3.3 | ||
* Meshki v1.4.0 | ||
* Copyright 2016, Mohammad reza Hajianpour <[email protected]> | ||
* http://meshki.borderliner.ir/ | ||
* Free to use under the MIT license. | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,8 +65,7 @@ a { | |
} | ||
|
||
.custom-down-cdn { | ||
width: 100%; | ||
max-width: 250px; | ||
width: 250px; | ||
} | ||
|
||
.custom-down-cdn span { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,8 +65,7 @@ a { | |
} | ||
|
||
.custom-down-cdn { | ||
width: 100%; | ||
max-width: 250px; | ||
width: 250px; | ||
} | ||
|
||
#twitter-widget-0 { | ||
|
Oops, something went wrong.