Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.66 KB | None | 0 0
  1. <body>
  2. <div id="header">
  3. <div id="headerTitle">
  4. <p>Project Archive</p>
  5. </div>
  6. <div id="nav">
  7. <ul>
  8. <li class="navOn"><a class="active" href="Home.php">Home</a></li>
  9. <li><a href="Home.php">All</a></li>
  10. <li><a href="Home.php">Categories</a></li>
  11. <li><a href="Home.php">Quote</a></li>
  12. <li><a href="Home.php">Support</a></li>
  13. <li class="dropdown">
  14. <a href="#" class="dropbtn">Settings</a>
  15. <div class="dropdown-content">
  16. <a href="#">Link 1</a>
  17. <a href="#">Link 2</a>
  18. <a href="#">Link 3</a>
  19. </div>
  20. </li>
  21. </ul>
  22. </div>
  23.  
  24. </div>
  25. <div id="search">
  26. <p>Search Your Documents...</p>
  27. <form action="Home.php" method="post">
  28. <input type="text" name="search" placeholder="search" class="tbSearch">
  29. </form>
  30. </div>
  31.  
  32. <div id="documents">
  33. <div id="docGrid">
  34. <div id="docLeft">
  35. <div id="docName">
  36. <p>Doc Name</p>
  37. </div>
  38. <div id="docDescription">
  39. <p>This is the area where the description of the document will be displayed.</p>
  40. </div>
  41. <div id="docOpen">
  42. <table class="btnOpen">
  43. <tr>
  44. <td>OPEN</td>
  45. </tr>
  46. </table>
  47. </div>
  48. </div>
  49.  
  50. <div id="docRight">
  51. <div id="docName">
  52. <p>Doc Name</p>
  53. </div>
  54. <div id="docDescription">
  55. <p>This is the area where the description of the document will be displayed.</p>
  56. </div>
  57. <div id="docOpen">
  58. <table class="btnOpen">
  59. <tr>
  60. <td>OPEN</td>
  61. </tr>
  62. </table>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67.  
  68. <div id="docGrid">
  69. <div id="docLeft">
  70. <div id="docName">
  71. <p>Doc Name</p>
  72. </div>
  73. <div id="docDescription">
  74. <p>This is the area where the description of the document will be displayed.</p>
  75. </div>
  76. <div id="docOpen">
  77. <table class="btnOpen">
  78. <tr>
  79. <td>OPEN</td>
  80. </tr>
  81. </table>
  82. </div>
  83. </div>
  84.  
  85. <div id="docRight">
  86. <div id="docName">
  87. <p>Doc Name</p>
  88. </div>
  89. <div id="docDescription">
  90. <p>This is the area where the description of the document will be displayed.</p>
  91. </div>
  92. <div id="docOpen">
  93. <table class="btnOpen">
  94. <tr>
  95. <td>OPEN</td>
  96. </tr>
  97. </table>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102.  
  103. <div id="docGrid">
  104. <div id="docLeft">
  105. <div id="docName">
  106. <p>Doc Name</p>
  107. </div>
  108. <div id="docDescription">
  109. <p>This is the area where the description of the document will be displayed.</p>
  110. </div>
  111. <div id="docOpen">
  112. <table class="btnOpen">
  113. <tr>
  114. <td>OPEN</td>
  115. </tr>
  116. </table>
  117. </div>
  118. </div>
  119.  
  120. <div id="docRight">
  121. <div id="docName">
  122. <p>Doc Name</p>
  123. </div>
  124. <div id="docDescription">
  125. <p>This is the area where the description of the document will be displayed.</p>
  126. </div>
  127. <div id="docOpen">
  128. <table class="btnOpen">
  129. <tr>
  130. <td>OPEN</td>
  131. </tr>
  132. </table>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137.  
  138. <div id="docGrid">
  139. <div id="docLeft">
  140. <div id="docName">
  141. <p>Doc Name</p>
  142. </div>
  143. <div id="docDescription">
  144. <p>This is the area where the description of the document will be displayed.</p>
  145. </div>
  146. <div id="docOpen">
  147. <table class="btnOpen">
  148. <tr>
  149. <td>OPEN</td>
  150. </tr>
  151. </table>
  152. </div>
  153. </div>
  154.  
  155. <div id="docRight">
  156. <div id="docName">
  157. <p>Doc Name</p>
  158. </div>
  159. <div id="docDescription">
  160. <p>This is the area where the description of the document will be displayed.</p>
  161. </div>
  162. <div id="docOpen">
  163. <table class="btnOpen">
  164. <tr>
  165. <td>OPEN</td>
  166. </tr>
  167. </table>
  168. </div>
  169. </div>
  170. </div>
  171. </div>
  172. </body>
  173.  
  174. @charset "utf-8";
  175. body{
  176. background:#E8E8E8;
  177. overflow-x:hidden;
  178. }
  179. #header{
  180. width:100%;
  181. height:80px;
  182. font-weight:bold;
  183. }
  184. #search{
  185. height:115px;
  186. background-color:#4C66A4;
  187. color:#FFF;
  188. text-align:center;
  189. font-size:18px;
  190. font-weight:bold;
  191. padding-top:10px;
  192. }
  193. #navTop{
  194. height:5px;
  195. margin-bottom:20px;
  196. background-color:#4C66A4;
  197. }
  198. #documents{
  199. width:100%;
  200. height:100%;
  201. }
  202. #docGrid{
  203. height:225px;
  204. margin-left:10%;
  205. margin-right:10%;
  206. margin-top:20px;
  207. margin-bottom:20px;
  208. }
  209. #docLeft{
  210. float:left;
  211. height:222px;
  212. width:45%;
  213. background-color:#FFF;
  214. border-bottom:3px solid #BEBEBE;
  215. }
  216. #docRight{
  217. float:right;
  218. height:222px;
  219. width:45%;
  220. background-color:#FFF;
  221. border-bottom:3px solid #BEBEBE;
  222. }
  223. #docName{
  224. text-align:center;
  225. margin-top:10px;
  226. margin-bottom:10px;
  227. font-size:16px;
  228. font-weight:bold;
  229. }
  230. #docDescription{
  231. text-align:center;
  232. margin-top:10px;
  233. margin-bottom:10px;
  234. margin-left:5px;
  235. margin-right:5px;
  236. height:110px;
  237. }
  238. #docOpen{
  239. text-align:center;
  240. margin-left:17.5%;
  241. margin-right:17.5%;
  242. margin-top:10px;
  243. margin-bottom:10px;
  244. }
  245. #headerTitle{
  246. float:left;
  247. font-weight:bold;
  248. font-size:20px;
  249. text-align:center;
  250. width:25%;
  251. }
  252. ul {
  253. list-style-type: none;
  254. margin: 0;
  255. padding: 0;
  256. overflow: hidden;
  257. font-size:12px;
  258. height:80px;
  259. }
  260. .navOn{
  261. border-top:3px solid #4C66A4;
  262. height:47px;
  263. padding-top:27px;
  264. }
  265. li {
  266. float: left;
  267. width:12%;
  268. height:50px;
  269. padding-top:30px;
  270. text-align:center;
  271. }
  272. a:visited {
  273. text-decoration: none;
  274. color:#000;
  275. }
  276. li a, .dropbtn {
  277. display: inline-block;
  278. color: #000;
  279. text-align: center;
  280. text-decoration: none;
  281. }
  282. li.dropdown {
  283. display: inline-block;
  284. }
  285. .dropdown-content {
  286. display: none;
  287. position: absolute;
  288. background-color: #f9f9f9;
  289. min-width: 160px;
  290. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  291. }
  292. .dropdown-content a {
  293. color: black;
  294. padding: 12px 16px;
  295. text-decoration: none;
  296. display: block;
  297. text-align: left;
  298. }
  299. .dropdown-content a:hover {
  300. background-color: #f1f1f1
  301. }
  302. .dropdown:hover .dropdown-content {
  303. display: block;
  304. }
  305. .btnOpen{
  306. text-align:center;
  307. vertical-align:middle;
  308. height:30px;
  309. width:100%;
  310. border-radius:5px;
  311. background-color:#4C66A4;
  312. color:#FFF;
  313. font-size:15px;
  314. font-weight:bold;
  315. }
  316. .headerTitle{
  317. font-size:20px;
  318. text-align:center;
  319. vertical-align:middle;
  320. font-weight:bold;
  321. }
  322. .tbSearch{
  323. border: 1px solid #848484;
  324. -webkit-border-radius: 30px;
  325. -moz-border-radius: 30px;
  326. border-radius: 30px;
  327. outline:0;
  328. padding-left:10px;
  329. padding-right:10px;
  330. margin-top:0;
  331. margin-bottom:0;
  332. margin-left:12.5%;
  333. margin-right:12.5%;
  334. width:75%;
  335. height:25px;
  336. font-size:15px;
  337. }
  338. }
  339.  
  340. /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
  341.  
  342. @media only screen and (min-width: 481px) {
  343. }
  344.  
  345. /* Desktop Layout: 769px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */
  346.  
  347. @media only screen and (min-width: 769px) {
  348. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement