Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: static/css/main.css

Issue 29611624: Issue 6047 - Updated templates and uninstalled pages (Closed) Base URL: https://hg.adblockplus.org/web.adblockplus.org
Patch Set: Addressed comments in #15 Created Dec. 18, 2017, 12:55 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « static/css/defaults.css ('k') | static/css/simple.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: static/css/main.css
===================================================================
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -5,16 +5,21 @@
}
body
{
margin: 0;
line-height: 1.5;
}
+#content
+{
+ padding-bottom: 2em;
+}
+
a img
{
border: none;
}
a:link, a:visited
{
color: #555;
@@ -144,16 +149,25 @@
}
[dir="rtl"] .alert
{
border-right: 5px solid #d14841;
}
/******************************************************************************
+ * .section
+ *****************************************************************************/
+
+.section
+{
+ padding: 2em 0;
+}
+
+/******************************************************************************
* .content
*****************************************************************************/
.content h1,
.content h2,
.content h3,
.content h4,
.content h5
@@ -176,16 +190,95 @@
}
.content a,
.content a:visited
{
color: #c70d2c;
}
+/* Buttons
+ ******************************************************************************/
+
+.button
+{
+ padding: 0.5em 2em;
+ border: none;
+ text-align: center;
+}
+
+.button:hover,
+.button:active,
+.button:focus
+{
+ text-decoration: none;
+}
+
+@media(max-width: 767px)
+{
+ .button
+ {
+ display: block;
+ width: 100%;
+ }
+}
+
+.button.primary
+{
+ color: #fff;
+ background-color: #c70d2c;
+ box-shadow: 0px 2px 5px #95989A;
+}
+
+.button.primary:hover
+{
+ background-color: #E00F32;
+}
+
+.button.primary:active
+{
+ background-color: #AD102A;
+}
+
+.button.inverse,
+a.button.inverse
+{
+ background: none;
+ color: #fff;
+ margin-left: 2px;
+ margin-right: 2px;
+ border: 1px solid #fff;
+}
+
+.button.inverse:hover,
+.button.inverse:focus
+{
+ box-shadow: inset 0 0 0 2px #fff;
+}
+
+.button.inverse:active
+{
+ background-color: #fff;
+}
+
+.bg-accent .button.inverse:active
+{
+ color: #077CA6;
+}
+
+/*******************************************************************************
+ * .bg-* utilities
+ ******************************************************************************/
+
+.bg-accent
+{
+ color: #fff;
+ background-color: #077CA6;
+}
+
/*******************************************************************************
* #navbar
******************************************************************************/
#navbar
{
min-height: 4em;
background-color: #c70d2c;
@@ -452,17 +545,16 @@
/*******************************************************************************
* #footer
******************************************************************************/
#footer
{
overflow: auto;
- margin-top: 2em;
padding: 2em 0em;
color: #ececec;
background-color: #292929;
font-size: 0.9em;
}
/* #footer body
******************************************************************************/
« no previous file with comments | « static/css/defaults.css ('k') | static/css/simple.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld