Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cfrome77/hugo-theme-sky.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Frome <fromeca@dukes.jmu.edu>2018-06-03 05:11:26 +0300
committerGitHub <noreply@github.com>2018-06-03 05:11:26 +0300
commitd40d429e44bd4dd4cf11d763ba2ade8f2d80d448 (patch)
tree5f0d631b1e2fc50d4f035613a1459e4ca9edb996
parentf61762d27caed8424bd51e40924a0f8c664d7280 (diff)
Delete default.scss
-rw-r--r--static/css/default.scss866
1 files changed, 0 insertions, 866 deletions
diff --git a/static/css/default.scss b/static/css/default.scss
deleted file mode 100644
index 8b9ed7c..0000000
--- a/static/css/default.scss
+++ /dev/null
@@ -1,866 +0,0 @@
-@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,300,700);
-@import url(https://fonts.googleapis.com/css?family=Montserrat);
-@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro:400,700);
-
-/* Globals */
-
-html {
- height: 100%;
- overflow-x: hidden;
-}
-
-body {
- font-family: 'Open Sans', sans-serif;
- font-weight: 300;
- background-color: #2D2D29;
- color: $orange;
- font-size: 16px;
- height: 100%;
- width: 100%
-}
-
-a, a:active {
- color: red;
- text-decoration: none;
-}
-
-a:hover {
- color: blue;
- text-decoration: none;
-}
-
-ul {
- list-style-type: none;
-}
-
-.navbar, .nav {
- background-color: blue;
-
- .navbar-toggle {
- margin-top: 10px;
- padding-top: 0px;
- padding-bottom: 20px;
- }
-
- li {
-
- a, a:active {
- color: white;
- }
-
- a:hover {
- color: blue;
- text-decoration: none;
- }
- }
-}
-
-.clearfix:after {
- content: " ";
- display: block;
- height: 0;
- clear: both;
-}
-
-.header {
- font-size: 32px;
- text-align: center;
- margin-top: 20px;
- margin-left: -0%;
- width: 100%;
-
- @media (min-width: $screen-sm-min) {
- font-size: 62px;
- margin-left: -10%;
- width: 120%;
- }
-}
-
-.menu-button {
- color: white;
- font-size: 24px;
- position: fixed;
- top: 10px;
- left: 20px;
- cursor: pointer;
- line-height: 1em;
- padding: 10px;
- background-color: red;
- z-index: 100;
- @media (min-width: $screen-sm-min) {
- top: 20px;
- left: 40px;
- }
-}
-
-.content-panel {
- background-color: yellow;
- padding-top: 20px;
- padding-bottom: 20px;
- padding-left: 30px;
- padding-right: 30px;
- margin-top: 20px;
- box-shadow: 0px 0px 0px 0px, 0px 6px 12px rgba(0, 0, 0, 0.2);
- border-bottom: 5px solid $light-blue;
-}
-
-#my-menu {
-
- p {
- margin-bottom: 5px;
- }
-
- a, a:active {
- color: white;
- }
-
- a:hover {
- color: blue;
- }
-
- .pages {
-
- .fa {
- margin-right: 10px;
- }
- }
-}
-
-.links {
- margin-top: 50px;
- text-align: center;
-
- i {
- padding-left: 5px;
- padding-right: 5px;
-
- @media (min-width: 768px) {
- padding-left: 10px;
- padding-right: 10px;
- }
- }
-
- .fa {
- -webkit-transition: 0.3s;
- -moz-transition: 0.3s;
- transition: 0.3s;
- }
-
- .fa-twitter:hover {
- color: $twitter;
- }
-
- .fa-linkedin:hover {
- color: $linkedin;
- }
-
- .fa-xing:hover {
- color: $xing;
- }
-
- .fa-google-plus:hover {
- color: $google-plus;
- }
-
- .fa-facebook:hover {
- color: $facebook;
- }
-
- .fa-github-alt:hover {
- color: $github;
- }
-
- .fa-stack-overflow:hover {
- color: $stack-overflow;
- }
-
- .fa-instagram:hover {
- color: $instagram;
- }
-
- .fa-reddit-alien:hover {
- color: $reddit;
- }
-
- .fa-rss:hover {
- color: $rss;
- }
-}
-
-/* Index */
-
-.index {
- height: 100%;
- max-height: 100%;
- width: 100%;
- padding: 0px;
-
- @media (min-width: 778px) {
- width: 700px;
- max-width:700px;
- }
-
- .header {
- margin-top: 10px;
- margin-left: 0%;
- margin-bottom: 0px;
- font-size: 32px;
- width: 100%;
-
- @media (min-width: 1200px) {
- margin-left: -10%;
- width: 120%;
- }
- }
-
- .categories {
- font-size: 22px;
- }
-
- .content-panel:nth-of-type(1) {
- border-bottom: 10px solid $light-blue;
- }
-
- .author-header {
- font-family: 'Montserrat', sans-serif;
- color: $light-blue;
- margin-top: 0px;
- padding-top: 15px;
- font-size: 30px;
-
- @media (min-width: 992px) {
- font-size: 52px;
- margin-top: 0px;
- }
-
- @media (min-width: 992px) {
- font-size: 60px;
- margin-top: -20px;
- }
- }
-
- .row {
- height: 100%;
- max-height: 100%;
- margin-top: 60px;
- margin-left: 0px;
- margin-right: 0px;
- }
-
- .gravatar {
- width: 100%;
- text-align: center;
- }
-
- .author-text {
- text-align: center;
- margin-top: 30px;
-
- b {
- font-size: 32px;
- }
- }
-
- .links {
- font-size: 2em;
- }
-
- .articles {
- text-align: center;
- font-size: 20px;
-
- h2 {
- margin-bottom: 30px;
- color: $light-blue;
- font-size: 26px;
- }
-
- ul {
-
- padding: 0px;
-
- li {
- margin-bottom: 20px;
- font-size: 24px;
-
- a:hover {
- color: yellow;
- }
-
- small {
- font-size: 14px;
- margin-top: -10px;
- padding-top: 0px;
- color: yellow;
- }
-
- }
-
- li:nth-last-of-type(1) {
-
- small {
- font-size: 16px;
- }
-
- }
- }
-
- a, a:active {
- color: yellow;
- white-space: nowrap;
- }
-
- a:hover {
- color: yellow;
- }
- }
-
- .copyright {
- margin-top: 50px;
- text-align: center;
- }
-
- .links {
- a, a:active {
- color: #FFFFFF;
- }
- }
-
- .menu {
- margin-top: 250px;
- margin-bottom: 20px;
- font-size: 20px;
- position: absolute;
- bottom: 0px;
-
- a, a:active {
- color: #FFFFFF;
- }
-
- a:hover {
- color: yellow;
- }
-
- ul {
- margin-bottom: 30px;
- padding-left: 10px;
-
- ul {
- padding-left: 50px;
- list-style: none;
- margin-left: 0;
- text-indent: -0.6em;
- }
- }
- }
-
-}
-
-.all-posts {
- margin-left: 0px;
- margin-right: 0px;
-
- @media (min-width: 778px) {
- #search-container {
- padding-top: 75px;
- padding-bottom: 150px;
- }
- }
-
- @media (min-width: 992px) {
- margin-left: -15px;
- margin-right: -15px;
-
- #search-container {
- padding-bottom: 300px;
- }
- }
-
- #search-input {
- position:relative;
- width: 100%;
- padding:6px 15px 6px 30px;
- margin: 2px;
- margin-top: 50px;
-
- color:$dark;
- background-color: white;
-
- border:1px solid #adc5cf;
- border-radius:15px;
- -moz-border-radius:15px;
- -webkit-border-radius:15px;
- }
-
- #search-input:focus {
- border: none;
- }
-
- .content-panel {
- padding-left: 10px;
- padding-right: 10px;
- @media (min-width: 778px) {
- padding-left: 30px;
- padding-right: 30px;
- }
- }
-}
-
-
-.single {
- height:100%;
- max-height: 100%;
-
- h1, h2, h3, h4, h5, h6 {
- font-family: 'Montserrat', sans-serif;
- margin-bottom: 10px;
- }
-
- h2 {
- font-size: 36px;
- }
-
- h3 {
- font-size: 28px;
- }
-
- p {
- margin-bottom: 10px;
-
- @media (min-width: 778px) {
- margin-bottom: 40px;
- }
- }
-
- .menu {
-
- background-color: blue;
-
- a, a:active {
- color: $white;
- }
-
- a:hover {
- color: blue;
- }
-
- h4 {
- margin-top: 20px;
- }
-
- .share {
- margin-top: 20px;
-
- h4 {
- margin-bottom: 10px;
- }
- }
-
- .home {
- margin-top: 10px;
- font-size: 16px;
-
- a {
- color: white;
- }
- }
-
- .related {
- ul {
- padding: 0px;
- }
- li {
- margin-bottom: 10px;
- }
- }
- }
-
- .article {
- width: 100%;
- margin-left: 0%;
- padding: 0px;
-
- @media (min-width: 778px) {
- width: 90%;
- margin-left: 5%;
- }
-
- @media (min-width: 992px) {
- width: 70%;
- margin-left: 15%;
- }
-
- @media (min-width: 1200px) {
- width: 50%;
- margin-left: 25%;
- }
-
- .thumb {
- margin-top: 20px;
- margin-bottom: 0px;
- text-align: center;
-
- img {
- height: 50px;
- @media (min-width: 778px) {
- height: 70px;
- }
- }
- }
-
- .author {
- font-size: 20px;
- text-align: center;
- margin-bottom: 0px;
- }
-
- .read-time {
- font-size: 16px;
- text-align: center;
- margin-bottom: 10px;
- font-weight: 400;
- @media (min-width: 778px) {
- margin-bottom: 40px;
- }
- }
-
- .content {
- font-size: 18px;
- line-height: 170%;
- padding-left: 15px;
- padding-right: 15px;
- padding-top: 10px;
- padding-bottom: 10px;
-
- @media (min-width: 778px) {
- font-size: 24px;
- padding-left: 30px;
- padding-right: 30px;
- padding-top: 40px;
- padding-bottom: 20px;
- }
-
- .series {
- margin-bottom: 50px;
- }
-
- img {
- max-width: 100%;
- padding: 10px;
- display: block;
- margin-left: auto;
- margin-right: auto
- }
-
- ul {
- list-style-type: disc;
- }
-
- ol {
- list-style-type: decimal;
- }
-
- blockquote {
- position: relative;
- width: 100%;
- margin-left: -15px;
- padding-right: 10px;
- background-color: $darker;
- color: white;
- box-sizing: content-box;
- border: none;
- font-size: 28px;
-
- @media (min-width: 778px) {
- margin-left: -30px;
- padding-left: 45px;
- padding-right: 15px;
- }
-
- p {
- margin: 0;
- padding: 15px;
- z-index: 0;
- }
-
- :before {
- font-family: "Times New Roman";
- color: yellow;
- content: "“";
- position: absolute;
- top: 15px;
- left: 15px;
- font-size: 65px;
- font-weight: bold;
- }
-
- }
-
- .alignright {
- float: right;
- }
-
- .aligncenter {
- display: block;
- margin: 5px auto 5px auto;
- }
-
- figure.highlight, div.highlighter-rouge {
- width: 100%;
- margin-left: -15px;
- padding-right: 10px;
- box-sizing: content-box;
-
- @media (min-width: 778px) {
- margin-left: -30px;
- padding-right: 60px;
- }
-
- pre {
- width: 100%;
- font-family: 'Anonymous Pro';
- background-color: red;
- color: $white;
- font-size: 12px;
- border: none;
- padding-left: 15px;
- padding-top: 20px;
- padding-bottom: 20px;
- padding-right: 15px;
- box-sizing: content-box;
- border-radius: 0;
- margin-bottom: 10px;
- margin-top: 10px;
-
- @media (min-width: 778px) {
- padding-left: 50px;
- padding-right: 10px;
- margin-bottom: 40px;
- font-size: 15px;
- }
- }
- }
-
- p, ul, ol {
-
- code {
- font-family: 'Anonymous Pro';
- font-size: 15px;
- background-color: red;
- color: $white;
- padding: 0.5em;
- vertical-align: middle;
- }
-
- }
-
- .tags {
- margin-top: 10px;
- margin-bottom: 10px;
- text-align: center;
-
- a, a:active {
- color: $white;
- }
-
- a:hover {
- color: blue;
- }
-
- }
-
- .share {
- margin-top: 20px;
- margin-bottom: 10px;
- text-align: center;
-
- }
-
- }
-
- .feedback {
- text-align: center;
-
- .fa-heart {
- color: red;
- }
-
- }
-
- .comments {
- }
-
- }
-}
-
-.related {
- margin-top: 50px;
- text-align: center;
-
- .related-header {
- margin-top: -30px;
- margin-bottom: 20px;
-
- a {
- color: $white;
- font-size: 18px;
- width: auto;
- padding: 10px 20px;
- background-color: $darker;
- box-shadow: 0px 0px 0px 0px, 0px 6px 12px rgba(0, 0, 0, 0.2);
- }
-
- a:hover {
- color: blue;
- }
- }
-
- .title {
- padding-top:20px;
- font-size: 24px;
- margin-bottom: 20px;
-
- @media (min-width: 778px) {
- font-size: 36px;
- }
-
- a {
- color: $white;
- }
-
- a:hover {
- color: yellow;
- }
- }
-
- p {
- margin-bottom: 0px;
- }
-
- .previous-next {
- width: 50%;
-
- a {
- color: white;
- }
-
- a:hover {
- color: yellow;
- }
- }
-
- .next {
- float: right;
- text-align: right;
- }
-
- .previous {
- float: left;
- text-align: left;
- }
-
- .date {
- color: yellow;
- }
-}
-
-.search-hr {
- width: 700px;
- border-color: yellow;
-}
-
-.error {
- .error-text {
- margin-top: 30px;
-
- a {
- color: yellow;
- }
- }
-
- .links {
- font-size: 1em;
- }
-}
-
-.footer {
- width: 100%;
- margin-left: 0%;
-
- .fa-heart {
- color: $red;
- }
-
- @media (min-width: 778px) {
- width: 90%;
- margin-left: 5%;
- }
-
- @media (min-width: 992px) {
- width: 80%;
- margin-left: 10%;
- }
-
- @media (min-width: 1200px) {
- width: 70%;
- margin-left: 15%;
- }
-
- div {
- color: yellow;
- text-align: center;
- margin-top: 20px;
- margin-bottom: 20px;
- }
-}
-
-.btn-categories {
- background-color: blue;
- border-color: $light-blue;
- color: $white;
- &:hover {
- background-color: blue;
- border-color: $dark-blue;
- color: $white;
- }
- &:active {
- background-color: blue;
- border-color: blue;
- color: white;
- }
- &:focus {
- background-color: blue;
- border-color: blue;
- color: white;
- }
-}
-
-.dropdown-menu {
- background-color: blue;
- color: $white;
- > li > a {
- background-color: blue;
- color: $white;
- &:hover {
- background-color: blue;
- color: $white;
- }
- }
-}
-
-table{
- margin: 0 auto;
- border-collapse: collapse;
- border-spacing: 0;
- border:2px solid;
-}
-
-th{
- padding: 2px;
- border:2px solid;
-}
-
-td{
- padding: 2px;
- border:1px solid;
-} \ No newline at end of file