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

Simplify design. Use bold colors. #332

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions styles/home.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
/* Home Page */

#intro p {
color:#fff;
text-rendering: optimizeLegibility;
}
#intro p,
#intro ul {
text-shadow:0 1px 2px rgba(0,0,0,.5);
font-size:1.125rem;
}

Expand All @@ -26,7 +24,6 @@

#intro h3 {
margin:1.5rem 0 0;
color:#E6E6E6;
}
#intro h3:after {
display:none;
Expand Down Expand Up @@ -56,7 +53,6 @@
white-space:nowrap;
}
#intro .download a {
color:#ccc;
border:0;
}
#intro .download a:hover,
Expand All @@ -65,14 +61,10 @@
}

#intro .download a.download-link {
color:#fff;
width: 50px;
display: inline-block;
}

#layout-content {
border-right:.25rem solid #666;
}
.home .newsentry .newstitle a:after {
content:"\20 \00bb";
color:#666;
Expand Down
27 changes: 16 additions & 11 deletions styles/theme-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ hr {
margin:1.5rem 0;
border:0;
height:0;
border-top:.25rem solid #99c;
border-top:.25rem solid #231A7E;
}

.navbar .brand img {
Expand Down Expand Up @@ -748,7 +748,7 @@ table.standard th.subr {

#layout .cse table.gsc-search-box,
#layout table.gsc-search-box {
border: solid 1px #99c;
border: solid 1px #231A7E;
border-radius: 2px;
}

Expand All @@ -764,8 +764,8 @@ table.standard th.subr {

#layout .cse input.gsc-search-button,
#layout input.gsc-search-button {
background: #99c;
border: solid 1px #99c;
background: #513FB5;
border: solid 1px #231A7E;
border-radius: 0;
color: rgb(238, 238, 255);
}
Expand Down Expand Up @@ -1229,17 +1229,21 @@ div.caution,
blockquote.note {
padding: .75rem;
margin: 1.5rem 0;
overflow: hidden
overflow: hidden;
box-shadow:inset 0 0 0 1px rgba(0,0,0,.15);
border-left:.5rem solid;
border-radius:2px;
background:#FFF;
}

blockquote.note strong.note {
font-size: 1.125rem;
}
div.tip strong.tip,
div.warning strong.warning,
div.caution strong.caution {
div.caution .caution,
div.warning strong.warning {
float: left;
margin-right: 0.5rem;
margin-right:0.25rem;
font-size: 1.125rem;
}
blockquote.note p,
Expand All @@ -1248,6 +1252,9 @@ div.warning p,
div.tip p {
margin: 1.5rem 0 0;
}
.refentry div.caution .caution::after {
content:": "
}
blockquote.note *:first-child + p,
div.caution *:first-child + p,
div.warning *:first-child + p,
Expand Down Expand Up @@ -1607,7 +1614,7 @@ div.soft-deprecation-notice blockquote.sidebar {
}

#mainmenu-toggle-overlay {
background: #4F5B93 url(/images/mobile-menu.png) no-repeat center center;
background: #231A7E url(/images/mobile-menu.png) no-repeat center center;
float: right;
display: block;
height: 32px;
Expand Down Expand Up @@ -1765,7 +1772,6 @@ aside.tips {
-moz-box-sizing:border-box;
box-sizing:border-box;
padding:1.5rem;
color:#ccc;
}
aside.tips p {
margin-top:0;
Expand All @@ -1783,7 +1789,6 @@ aside.tips .panel .headline {
border-bottom:0;
line-height: 1.5rem;
font-size:1.125rem;
color:#E6E6E6;
text-rendering: optimizeLegibility;
}
/* Announcement Area */
Expand Down
Loading