Browse Source

dashboard styling

Neal Wilson 6 years ago
parent
commit
786213394a
1 changed files with 95 additions and 0 deletions
  1. 95
    0
      config/Scripts/dashboard.css

+ 95
- 0
config/Scripts/dashboard.css View File

@@ -0,0 +1,95 @@
1
+html {
2
+    /* background: #82B3AE; */
3
+    background: #EFF0F1;
4
+}
5
+
6
+.container {
7
+    width: 100%;
8
+    margin-right: auto;
9
+    margin-left: auto;
10
+}
11
+
12
+@media screen and (min-width: 500px) {
13
+    .cell {
14
+        max-width: 100%;
15
+    }
16
+}
17
+
18
+@media screen and (min-width: 800px) {
19
+    .cell {
20
+        max-width: 50%;
21
+    }
22
+}
23
+
24
+@media screen and (min-width: 1200px) {
25
+    .cell {
26
+        max-width: 33%;
27
+    }
28
+}
29
+
30
+@media screen and (min-width: 1600px) {
31
+    .cell {
32
+        max-width: 25%;
33
+    }
34
+}
35
+
36
+@media screen and (min-width: 2000px) {
37
+    .cell {
38
+        max-width: 20%;
39
+    }
40
+}
41
+
42
+.cell {
43
+    float: left;
44
+    width: 100%;
45
+    min-width: 350px;
46
+}
47
+
48
+.cell-title {
49
+    background: #230F2B;
50
+}
51
+
52
+.cell-wrapper {
53
+    background: #FFFFFF;
54
+    border: 1px solid #e2e2e2;
55
+    border-radius: 3px;
56
+    margin-bottom: 10px;
57
+    margin-left: 5px;
58
+    margin-right: 5px;
59
+}
60
+
61
+.cell-wrapper .cell-title {
62
+    border-bottom: 1px solid #d7d7d7;
63
+    color: #EBEBBC;
64
+    font-size: 14px;
65
+    font-weight: 600;
66
+    padding: 7px 10px 4px;
67
+}
68
+
69
+.cell-wrapper .cell-stage {
70
+    overflow: hidden;
71
+    padding: 5px 10px;
72
+    position: relative;
73
+}
74
+
75
+.cell-wrapper .cell-notes {
76
+    background: #F21D41;
77
+    border-top: 1px solid #e2e2e2;
78
+    color: #EBEBBC;
79
+    font-size: 14px;
80
+    font-weight: 600;
81
+    padding: 8px 10px 5px;
82
+}
83
+
84
+.cell-wrapper .cell-stage .cell-title {
85
+    border: medium none;
86
+}
87
+
88
+.container a {
89
+    color: #000000;
90
+}
91
+
92
+.cell-stage p {
93
+    margin: 0;
94
+    padding: 0;
95
+}

Loading…
Cancel
Save