dashboard.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. a {
  2. text-decoration: none!important;
  3. }
  4. /*logo*/
  5. a.logo {
  6. display: block;
  7. }
  8. a.logo img {
  9. display: block;
  10. width: 60%;
  11. margin: auto;
  12. }
  13. /*The User Profile bar */
  14. .user-bar {
  15. margin-top: 2.8em;
  16. margin-bottom: 3.1em;
  17. }
  18. .user-bar span {
  19. font-size: 2em;
  20. }
  21. .user-bar img {
  22. margin-right: 1.2em;
  23. vertical-align: middle;
  24. }
  25. /*--------------------------------
  26. create new canvas
  27. ----------------------------------*/
  28. .create-canvas-btn {
  29. display: block;
  30. border: 2px solid #546e7a;
  31. color: #546e7a;
  32. border-radius: 5px;
  33. padding: 1.8em;
  34. margin-top: 2.8em;
  35. margin-bottom: 3.2em;
  36. font-size: 1.25em;
  37. transition: 0.2s all;
  38. }
  39. /*the icon for the add canvas*/
  40. .create-canvas-btn span {
  41. margin-right: 0.25em;
  42. font-size: 1.5em;
  43. vertical-align: middle;
  44. margin-bottom: 0.1em;
  45. }
  46. .create-canvas-btn:hover {
  47. background-color: #546e7a;
  48. color: #fff;
  49. }
  50. /*-------------------------------
  51. CANVAS GALARY
  52. ---------------------------------*/
  53. .canvas-gallery-item {
  54. margin-bottom: 1.8%;
  55. }
  56. .canvas-gallery-item .col-md-12 {
  57. width: 95%;
  58. margin: 2.5% 2.5% 0 2.5%;
  59. background-color: #546e7a;/*default*/
  60. border-radius: 5px;
  61. padding: 1em;
  62. height:15em;
  63. transition:all 0.3s;
  64. }
  65. .canvas-gallery-item .col-md-12:hover {
  66. background-color: #546e7a!important;
  67. color:white;
  68. }
  69. /*These colors will be dynamically added by jQuery*/
  70. .canvas-gallery-item .col-md-12.color0 {
  71. background-color: #85ade5;
  72. }
  73. .canvas-gallery-item .col-md-12.color1 {
  74. background-color: #aed581;
  75. }
  76. .canvas-gallery-item .col-md-12.color2 {
  77. background-color: #6bb5b4;
  78. }
  79. .canvas-gallery-item .col-md-12.color3 {
  80. background-color: #a281d1;
  81. }
  82. .canvas-gallery-item .col-md-12.color4 {
  83. background-color: #29bca4;
  84. }
  85. /*Remove Button*/
  86. /*<button type="button" class="remove-canvas"><span class="glyphicon glyphicon-remove-circle" aria-hidden="true"></span>Remove canvas</button>*/
  87. .remove-canvas{
  88. color:#37474f;
  89. margin-top:0;
  90. border:none;
  91. border-radius: 0 0 5px 5px;
  92. padding:0.5em;
  93. background-color:#cfd8dc;
  94. transition:all 0.3s;
  95. }
  96. .remove-canvas:hover{
  97. color:#fff;
  98. background-color:#546e7a;
  99. }
  100. .remove-canvas span{
  101. margin-right:0.5em;
  102. }
  103. /* ------------------------------
  104. Footer
  105. ------------------------------ */
  106. footer {
  107. font-size: 1em;
  108. clear: both;
  109. margin-top: 2em;
  110. padding: 1.5em;
  111. background-color: #37474f;
  112. ;
  113. color: white;
  114. }
  115. footer .license a {
  116. color: #759BCF;
  117. }
  118. footer .contact p{
  119. color: #18AE90;
  120. font-size:1em;
  121. }
  122. footer .contact h2{
  123. color:#6bb5b4;
  124. }
  125. footer .license {
  126. margin: 0.5em auto 1.8em auto;
  127. }
  128. footer p.ethics-copy.terms, footer p.ethics-copy.privacy {
  129. text-decoration: none;
  130. padding: 0 0.5em;
  131. display: inline-block;
  132. }
  133. footer p.cc {
  134. margin-top: 2.8em;
  135. }
  136. footer p.terms, footer p.privacy {
  137. margin: 1.9em auto;
  138. }
  139. footer .privacy a {
  140. color: #a67de0;
  141. }
  142. footer .terms a {
  143. color: #aed581;
  144. }
  145. /*footer license icons */
  146. footer .license-icons ul {
  147. list-style-type: none;
  148. margin-left: 0;
  149. padding-left: 0;
  150. }
  151. footer .license-icons li {
  152. display: inline-block;
  153. margin: 1.2em 0.2em;
  154. }
  155. footer .license-icons ul img {
  156. width: 3.5em;
  157. }