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

github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/main.css')
-rw-r--r--static/css/main.css54
1 files changed, 53 insertions, 1 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 5b7c829..5e8305d 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -1,5 +1,25 @@
/* ========================================================================= */
+/* = MODAL DIALOG */
+/* ========================================================================= */
+
+/* Used to contain the hyperlink and dialog content */
+.dialog-container {}
+
+/* Used to mark dialog link to click */
+.dialog-link {}
+
+/* Used by Javascript to inject into actual modal display */
+.dialog-content {
+ display: none;
+}
+
+/* Contains stylings to apply to the dialog content */
+.dialog-content-stylings {
+ padding: 5px;
+}
+
+/* ========================================================================= */
/* = LAZY LOADING */
/* ========================================================================= */
@@ -28,6 +48,19 @@
}
/* ========================================================================= */
+/* = PROJECT */
+/* ========================================================================= */
+
+/* Contains the project image and title */
+.project-container {}
+
+.project-container-title {
+ padding: 5px;
+ background-color: #455A64;
+ color: #FFFFFF;
+}
+
+/* ========================================================================= */
/* = NAVBAR MENU */
/* ========================================================================= */
@@ -304,7 +337,26 @@ html, body {
.rounded-corners {
-webkit-border-radius: 10px;
- border-radius: 10px;
+ -moz-border-radius: 10px;
+ border-radius: 10px;
+}
+
+.rounded-corners-top {
+ -webkit-border-top-left-radius: 10px;
+ -webkit-border-top-right-radius: 10px;
+ -moz-border-radius-topleft: 10px;
+ -moz-border-radius-topright: 10px;
+ border-top-left-radius: 10px;
+ border-top-right-radius: 10px;
+}
+
+.rounded-corners-bottom {
+ -webkit-border-bottom-right-radius: 10px;
+ -webkit-border-bottom-left-radius: 10px;
+ -moz-border-radius-bottomright: 10px;
+ -moz-border-radius-bottomleft: 10px;
+ border-bottom-right-radius: 10px;
+ border-bottom-left-radius: 10px;
}
/* From materialize */