|
|
@@ -1,247 +1,65 @@
|
|
|
-#moell-header {
|
|
|
- position: absolute;
|
|
|
- z-index: 99;
|
|
|
- width: 100%;
|
|
|
- opacity: 1;
|
|
|
- top: 0;
|
|
|
-}
|
|
|
-@media screen and (max-width: 768px) {
|
|
|
- #moell-header {
|
|
|
- margin-top: 0;
|
|
|
- background: #fff;
|
|
|
- -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- }
|
|
|
- #moell-header .navbar-brand {
|
|
|
- color: #00CCCC !important;
|
|
|
- }
|
|
|
- #moell-header #navbar li a {
|
|
|
- color: rgba(0, 0, 0, 0.5) !important;
|
|
|
- -webkit-transition: 0.3s;
|
|
|
- -o-transition: 0.3s;
|
|
|
- transition: 0.3s;
|
|
|
- }
|
|
|
- #moell-header #navbar li a:hover {
|
|
|
- color: #00CCCC !important;
|
|
|
- }
|
|
|
- #moell-header #navbar li a span:before {
|
|
|
- background: transparent !important;
|
|
|
- }
|
|
|
- #moell-header #navbar li.active a {
|
|
|
- background: transparent;
|
|
|
- background: none;
|
|
|
- color: #00CCCC !important;
|
|
|
- }
|
|
|
- #moell-header #navbar li.active a span:before {
|
|
|
- visibility: visible;
|
|
|
- -webkit-transform: scaleX(1);
|
|
|
- transform: scaleX(1);
|
|
|
- }
|
|
|
-}
|
|
|
-#moell-header .navbar {
|
|
|
- padding-bottom: 0;
|
|
|
+.navbar {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
-#moell-header #navbar li a {
|
|
|
- font-family: "Source Sans Pro", Arial, sans-serif;
|
|
|
- color: #00CCCC ;
|
|
|
- position: relative;
|
|
|
- font-size: 19px;
|
|
|
- font-weight: 300;
|
|
|
-}
|
|
|
-#moell-header #navbar li a span {
|
|
|
- position: relative;
|
|
|
- display: block;
|
|
|
- padding-bottom: 2px;
|
|
|
-}
|
|
|
-#moell-header #navbar li a span:before {
|
|
|
- content: "";
|
|
|
- position: absolute;
|
|
|
- width: 100%;
|
|
|
- height: 2px;
|
|
|
- bottom: 0;
|
|
|
- left: 0;
|
|
|
- background-color: #999999;
|
|
|
- visibility: hidden;
|
|
|
- -webkit-transform: scaleX(0);
|
|
|
- -moz-transform: scaleX(0);
|
|
|
- -ms-transform: scaleX(0);
|
|
|
- -o-transform: scaleX(0);
|
|
|
- transform: scaleX(0);
|
|
|
- -webkit-transition: all 0.3s ease-in-out 0s;
|
|
|
- -moz-transition: all 0.3s ease-in-out 0s;
|
|
|
- -ms-transition: all 0.3s ease-in-out 0s;
|
|
|
- -o-transition: all 0.3s ease-in-out 0s;
|
|
|
- transition: all 0.3s ease-in-out 0s;
|
|
|
-}
|
|
|
-#moell-header #navbar li a:hover {
|
|
|
- color: #999999;
|
|
|
-}
|
|
|
-#moell-header #navbar li a:hover span:before {
|
|
|
- visibility: visible;
|
|
|
- -webkit-transform: scaleX(1);
|
|
|
- -moz-transform: scaleX(1);
|
|
|
- -ms-transform: scaleX(1);
|
|
|
- -o-transform: scaleX(1);
|
|
|
- transform: scaleX(1);
|
|
|
-}
|
|
|
-#moell-header #navbar li.active a {
|
|
|
- background: transparent;
|
|
|
- background: none;
|
|
|
- color: #999999;
|
|
|
-}
|
|
|
-#moell-header #navbar li.active a span:before {
|
|
|
- visibility: visible;
|
|
|
- -webkit-transform: scaleX(1);
|
|
|
- transform: scaleX(1);
|
|
|
-}
|
|
|
-#moell-header .navbar-brand {
|
|
|
- float: left;
|
|
|
- display: block;
|
|
|
- font-size: 30px;
|
|
|
- font-weight: 700;
|
|
|
- padding-left: 0;
|
|
|
- color: #00CCCC ;
|
|
|
-}
|
|
|
-#moell-header.navbar-fixed-top {
|
|
|
- position: fixed !important;
|
|
|
- background: #fff;
|
|
|
- -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- -moz-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- -ms-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
|
|
|
- margin-top: 0px;
|
|
|
- top: 0;
|
|
|
-}
|
|
|
-#moell-header.navbar-fixed-top .navbar-brand {
|
|
|
- color: #00CCCC ;
|
|
|
-}
|
|
|
-#moell-header.navbar-fixed-top #navbar li a {
|
|
|
- color: rgba(0, 0, 0, 0.5);
|
|
|
- -webkit-transition: 0.3s;
|
|
|
- -o-transition: 0.3s;
|
|
|
- transition: 0.3s;
|
|
|
-}
|
|
|
-#moell-header.navbar-fixed-top #navbar li a:hover {
|
|
|
- color: #00CCCC ;
|
|
|
-}
|
|
|
-#moell-header.navbar-fixed-top #navbar li.active a {
|
|
|
- background: transparent;
|
|
|
- background: none;
|
|
|
- color: #00CCCC ;
|
|
|
-}
|
|
|
-#moell-header.navbar-fixed-top #navbar li.active a span:before {
|
|
|
- visibility: visible;
|
|
|
- -webkit-transform: scaleX(1);
|
|
|
- transform: scaleX(1);
|
|
|
- background-color: #00CCCC ;
|
|
|
-}
|
|
|
-#moell-header .navbar-default {
|
|
|
- border: transparent;
|
|
|
- background: transparent;
|
|
|
- -webkit-border-radius: 0px;
|
|
|
- -moz-border-radius: 0px;
|
|
|
- -ms-border-radius: 0px;
|
|
|
- border-radius: 0px;
|
|
|
-}
|
|
|
-@media screen and (max-width: 768px) {
|
|
|
- #moell-header .navbar-default {
|
|
|
- margin-top: 0px;
|
|
|
- padding-right: 0px;
|
|
|
- padding-left: 0px;
|
|
|
- }
|
|
|
-}
|
|
|
-#moell-header .navbar-default .brand-slogan {
|
|
|
- margin: 28px 0 0 15px;
|
|
|
- float: left;
|
|
|
- letter-spacing: 2px;
|
|
|
- color: #adadad;
|
|
|
-}
|
|
|
-#moell-header .navbar-default .brand-slogan em {
|
|
|
- color: #00CCCC ;
|
|
|
- font-style: normal;
|
|
|
-}
|
|
|
-#moell-header a {
|
|
|
- -webkit-transition: 0s;
|
|
|
- -o-transition: 0s;
|
|
|
- transition: 0s;
|
|
|
+.navbar-default, .jumbotron {
|
|
|
+ background-color: #3D93A3;
|
|
|
}
|
|
|
|
|
|
-#moell-home, #moell-home .text-wrap {
|
|
|
- height: 290px;
|
|
|
+.navbar-default .navbar-nav>li>a {
|
|
|
+ color: white;
|
|
|
}
|
|
|
-#moell-home .text-wrap {
|
|
|
- display: table;
|
|
|
- width: 100%;
|
|
|
- position: relative;
|
|
|
- z-index: 4;
|
|
|
+
|
|
|
+.navbar-default .navbar-brand {
|
|
|
+ color: white;
|
|
|
}
|
|
|
-#moell-home .text-inner {
|
|
|
- display: table-cell;
|
|
|
- vertical-align: middle;
|
|
|
- word-break:break-all;
|
|
|
+
|
|
|
+.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover {
|
|
|
+ color: white;
|
|
|
+ background-color: transparent;
|
|
|
}
|
|
|
|
|
|
|
|
|
-#moell-home .text-inner h1 {
|
|
|
- font-size: 40px;
|
|
|
- color: white;
|
|
|
+.navbar-static-top {
|
|
|
+ border-width: 0 0 0;
|
|
|
}
|
|
|
-#moell-home .text-inner h2 {
|
|
|
- font-size: 28px;
|
|
|
- line-height: 30px;
|
|
|
- font-weight: 300;
|
|
|
- color: rgba(255, 255, 255, 0.8);
|
|
|
- margin: 0;
|
|
|
+
|
|
|
+.panel {
|
|
|
+ border-radius: 0;
|
|
|
}
|
|
|
-#moell-home .text-inner h3 {
|
|
|
- font-size: 24px;
|
|
|
- line-height: 30px;
|
|
|
- font-weight: 200;
|
|
|
- color: rgba(255, 255, 255, 0.8);
|
|
|
- margin: 0;
|
|
|
+
|
|
|
+.panel-heading {
|
|
|
+ background-color: #fff;
|
|
|
}
|
|
|
-#moell-home .text-inner .article-info {
|
|
|
- color: rgba(255, 255, 255, 0.8);
|
|
|
+
|
|
|
+.panel-default>.panel-heading {
|
|
|
+ color: #3D93A3;
|
|
|
+ background-color: white;
|
|
|
+ border-color: #ddd
|
|
|
}
|
|
|
-#moell-home .gradient {
|
|
|
- position: absolute;
|
|
|
- height:220px;
|
|
|
- top: 50px;
|
|
|
- bottom: 0;
|
|
|
- left: 0;
|
|
|
- right: 0;
|
|
|
- z-index: 2;
|
|
|
- opacity: .9;
|
|
|
- -webkit-backface-visibility: hidden;
|
|
|
- background-color: #00CCCC ;
|
|
|
- /* IE9, iOS 3.2+ */
|
|
|
- background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIHN0b3AtY29sb3I9IiMzZjk1ZWEiIHN0b3Atb3BhY2l0eT0iMSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzUyZDNhYSIgc3RvcC1vcGFjaXR5PSIxIiBvZmZzZXQ9IjEiLz48L2xpbmVhckdyYWRpZW50PjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjdnNnZykiIC8+PC9zdmc+);
|
|
|
- background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0, #00CCCC ), color-stop(1, #999999));
|
|
|
- /* Android 2.3 */
|
|
|
- background-image: -webkit-repeating-linear-gradient(top left, #00CCCC 0%, #999999 100%);
|
|
|
- /* IE10+ */
|
|
|
- background-image: repeating-linear-gradient(to bottom right, #00CCCC 0%, #999999 100%);
|
|
|
- background-image: -ms-repeating-linear-gradient(top left, #00CCCC 0%, #999999 100%);
|
|
|
+
|
|
|
+.color-white {
|
|
|
+ color:white;
|
|
|
}
|
|
|
+
|
|
|
.article-list {
|
|
|
padding-left: 0px;
|
|
|
list-style: none;
|
|
|
}
|
|
|
-.article-list-item {
|
|
|
- border-bottom: 1px solid #ddd;
|
|
|
- padding:30px 0px;
|
|
|
+
|
|
|
+.m-t-25 {
|
|
|
+ margin-top:25px;
|
|
|
}
|
|
|
-.article-list-item .title {
|
|
|
- margin-top:10px;
|
|
|
+
|
|
|
+
|
|
|
+.article-list .desc {
|
|
|
+ margin-top:25px;
|
|
|
word-break:break-all;
|
|
|
+ color:#34495e;
|
|
|
}
|
|
|
|
|
|
-.article-list-item .desc {
|
|
|
- margin-top:10px;
|
|
|
- word-break:break-all;
|
|
|
+.article-list .info {
|
|
|
+ margin-top:25px;
|
|
|
+ color:#3D93A3;
|
|
|
}
|
|
|
.icon-github {
|
|
|
background: url('/default/icons/github.png') no-repeat;
|
|
|
@@ -272,6 +90,7 @@
|
|
|
max-width:150px;
|
|
|
}
|
|
|
|
|
|
-.author .author-footer a {
|
|
|
- color: #000000;
|
|
|
+
|
|
|
+a {
|
|
|
+ color: #34495e;
|
|
|
}
|