Advertisement
Guest User

Untitled

a guest
Jun 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. body
  2. {
  3. font-family: 'Open Sans', Helvetica, sans-serif;
  4.  
  5. color: #282828;
  6. background: #f2f2f2;
  7. }
  8.  
  9. a
  10. {
  11. text-decoration: none;
  12.  
  13. color: inherit;
  14. }
  15.  
  16. #navigation
  17. {
  18. position: fixed;
  19. z-index: 10;
  20. top: 0;
  21. left: 0;
  22.  
  23. width: calc(100% - 60px);
  24. padding: 5px 30px;
  25.  
  26. background: white;
  27. box-shadow: 0 1px 2px #c6c6c6;
  28. }
  29.  
  30. nav
  31. {
  32. float: right;
  33.  
  34. vertical-align: top;
  35.  
  36. color: black;
  37. }
  38.  
  39. nav ul
  40. {
  41. list-style-type: none;
  42. }
  43.  
  44. nav li
  45. {
  46. font-size: 11pt;
  47.  
  48. display: inline;
  49.  
  50. padding: 0 15px;
  51. }
  52.  
  53. nav li a{
  54. font-size: 12px;
  55. font-weight: 700;
  56. color: rgb(61, 61, 61);
  57. }
  58.  
  59. nav li a:hover
  60. {
  61. color: gray;
  62. }
  63.  
  64. #page_content
  65. {
  66. margin-top: 100px;
  67. width: 100%;
  68. }
  69.  
  70. #container{
  71. margin: auto;
  72. max-width: 700px;
  73. }
  74.  
  75. .section_title{
  76. font-size: 12px;
  77. color: #636363;
  78. font-weight: 700;
  79. }
  80.  
  81. #projects{
  82. float: left;
  83. width: 250px;
  84. }
  85.  
  86. #projects ul{
  87. list-style: none;
  88. margin: 0px;
  89. padding: 0px;
  90. margin-top: 7px;
  91. box-shadow: 1px 1px rgb(207, 207, 207);
  92. }
  93.  
  94. #projects ul li{
  95. background: white;
  96. padding: 6px 10px;
  97. margin-bottom: 1px;
  98. }
  99.  
  100. #projects ul a li:hover{
  101. background: #ededed;
  102. }
  103.  
  104. .project_title{
  105. color: #52abc8;
  106. font-family: 'Open Sans semibold', sans-serif;
  107. font-size: 14px;
  108. }
  109.  
  110. .project_last_updated{
  111. font-size: 12px;
  112. color: gray;
  113. }
  114.  
  115. .selected_project{
  116. border-left: 5px solid #52abc8;
  117. }
  118.  
  119. .section_actions{
  120. vertical-align: top;
  121. float: right;
  122. }
  123.  
  124. .section_actions img{
  125. margin-left: 5px;
  126. }
  127. .section_actions a:hover{
  128. opacity: .4;
  129. }
  130.  
  131. .actions_seperator{
  132. margin-right: 15px;
  133. display: inline-block;
  134. }
  135.  
  136. #tasks{
  137. float: right;
  138. width: calc(100% - 280px);
  139. margin-left: 30px;
  140. }
  141.  
  142. #tasks ul{
  143. list-style: none;
  144. margin: 0px;
  145. padding: 0px;
  146. margin-top: 7px;
  147. }
  148.  
  149. #tasks ul li{
  150. background: white;
  151. padding: 6px 10px;
  152. margin-bottom: 10px;
  153. box-shadow: 1px 1px rgb(207, 207, 207);
  154. }
  155.  
  156. .task_title{
  157. font-size: 13px;
  158. font-family: 'Open Sans semibold', sans-serif;
  159. }
  160.  
  161. .task_due_date{
  162. font-size: 11px;
  163. }
  164.  
  165. #tasks ul li:hover{
  166. background: #f5f5f5;
  167. }
  168.  
  169. .selected_task{
  170. border-left: 5px solid #52abc8;
  171. }
  172.  
  173. #login_form{
  174. margin: auto;
  175. text-align: left;
  176. width: 260px;
  177. }
  178.  
  179. #project_form{
  180. margin: auto;
  181. text-align: left;
  182. width: 260px;
  183. z-index: 100;
  184. margin-top: 100px;
  185. }
  186.  
  187. #task_form{
  188. margin: auto;
  189. text-align: left;
  190. width: 260px;
  191. z-index: 100;
  192. margin-top: 100px;
  193. }
  194.  
  195. #register_form{
  196. margin: auto;
  197. text-align: left;
  198. width: 260px;
  199. }
  200.  
  201. .form_title{
  202. font-size: 12px;
  203. font-weight: 700;
  204. margin-bottom: 5px;
  205. }
  206.  
  207. #login_form form{
  208. background: white;
  209. text-align: left;
  210. padding: 30px 40px 20px 40px;
  211. overflow: hidden;
  212. }
  213.  
  214. #register_form form{
  215. background: white;
  216. text-align: left;
  217. padding: 30px 40px 20px 40px;
  218. overflow: hidden;
  219. }
  220.  
  221. #project_form form{
  222. background: white;
  223. text-align: left;
  224. padding: 30px 40px 20px 40px;
  225. overflow: hidden;
  226. }
  227.  
  228. #task_form form{
  229. background: white;
  230. text-align: left;
  231. padding: 30px 40px 20px 40px;
  232. overflow: hidden;
  233. }
  234.  
  235. form input{
  236. border: 1px solid rgb(192, 192, 192);
  237. border-radius: 5px;
  238. padding: 10px 7px;
  239. margin-bottom: 10px;
  240. }
  241.  
  242. form input[type = "submit"]{
  243. margin: 0px;
  244. border: none;
  245. font-size: 12px;
  246. padding: 10px 15px;
  247. margin-right: -5px;
  248. float: right;
  249. background: #52abc8;
  250. color:white;
  251. font-weight: 700;
  252. }
  253.  
  254. #page_overlay{
  255. width: 100%;
  256. height: 100%;
  257. background: rgb(0, 0, 0, .6);
  258. position: absolute;
  259. top: 0px;
  260. left: 0px;
  261. z-index: 20;
  262. }
  263.  
  264. #project_form a{
  265. float: right;
  266. margin-top: -25px;
  267. margin-right: -25px;
  268. margin-bottom: 10px;
  269. color: red;
  270. }
  271.  
  272. #task_form a{
  273. float: right;
  274. margin-top: -25px;
  275. margin-right: -25px;
  276. margin-bottom: 10px;
  277. color: red;
  278. }
  279.  
  280. #task_form p{
  281. font-size: 12px;
  282. margin: 0px;
  283. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement