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

github.com/Chen-Zhe/photo-grid.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/default.css')
-rw-r--r--static/css/default.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/static/css/default.css b/static/css/default.css
new file mode 100644
index 0000000..e68894b
--- /dev/null
+++ b/static/css/default.css
@@ -0,0 +1,80 @@
+/* General Demo Style */
+@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
+
+html { height: 100%; }
+
+*,
+*:after,
+*:before {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 0;
+ margin: 0;
+}
+
+/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
+.clearfix:before,
+.clearfix:after {
+ content: " ";
+ display: table;
+}
+
+.clearfix:after {
+ clear: both;
+}
+
+.clearfix {
+ *zoom: 1;
+}
+
+body {
+ font-family: 'Lato', Calibri, Arial, sans-serif;
+ font-weight: 300;
+ font-size: 15px;
+ color: #333;
+ overflow: scroll;
+ overflow-x: hidden;
+}
+
+a {
+ color: #555;
+ text-decoration: none;
+}
+
+.container {
+ width: 100%;
+ position: relative;
+}
+
+.container > header {
+ width: 90%;
+ max-width: 1240px;
+ margin: 0 auto;
+ position: relative;
+ padding: 0 30px 50px 30px;
+}
+
+.container > header {
+ padding: 60px 30px 50px;
+ text-align: center;
+}
+
+.container > header h1 {
+ font-size: 34px;
+ line-height: 38px;
+ margin: 0 auto;
+ font-weight: 700;
+ color: #333;
+}
+
+.container > header h1 span {
+ display: block;
+ font-size: 20px;
+ font-weight: 300;
+}
+
+.main > p {
+ text-align: center;
+ padding: 50px 20px;
+}