Skip to content

Commit

Permalink
style: 优化文档样式
Browse files Browse the repository at this point in the history
  • Loading branch information
Pines-Cheng committed Dec 29, 2018
1 parent bdff7f2 commit 36dc0c1
Showing 1 changed file with 44 additions and 16 deletions.
60 changes: 44 additions & 16 deletions website/static/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,31 +1,59 @@
/* your custom css */
.flex{ display: flex !important; }
.flex.middle{ align-items: center; }
.flex.end { align-items: flex-end; }
.flex.center{ justify-content: center; }
.flex.spacebetween{ justify-content: space-between; }
.flex.vertical{ flex-direction: column; }
.col{ flex: 1; }

.fixedHeaderContainer header .logo{width: 30px; height: auto;}
.home_container{ background: rgb(40, 43, 46); }
.projectTitle{ color: #fff; height: 300px; }
.homeSplashFade .projectTitle small{ line-height: 1.5em; margin-top: 3em; }
.home_container .button{ border-color: #fff; color: #fff; margin-right: 12px;}
.home_container .button:hover { background: rgb(40, 43, 46); }
.home_container .buttonWrapper:last-child .button{ margin-right: 0; }
.flex {
display: flex !important;
}

.flex.middle {
align-items: center;
}

.flex.end {
align-items: flex-end;
}

.flex.center {
justify-content: center;
}

.flex.spacebetween {
justify-content: space-between;
}

.flex.vertical {
flex-direction: column;
}

.col {
flex: 1;
}

.home_container .button {
border-color: #fff;
color: #fff;
margin-right: 12px;
}

.home_container .button:hover {
background: rgb(40, 43, 46);
}

.home_container .buttonWrapper:last-child .button {
margin-right: 0;
}

.footer {
background-color: #f7f9ff;
z-index: 10;
}

.footer-container {
position: relative;
max-width: 1400px;
min-width: 180px;
margin: 0 auto;
padding: 80px;
}

.footer-logo-container {
display: inline-block;
box-sizing: border-box;
Expand Down Expand Up @@ -66,7 +94,7 @@ h3 {
color: #78A4FA;
}

a {
a, a:hover {
color: #6190e8;
}

Expand Down

0 comments on commit 36dc0c1

Please sign in to comment.