Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. * {
  2. margin:0;
  3. padding:0;
  4. box-sizing:border-box;
  5. }
  6. body{
  7. width:100%;
  8. height:auto;
  9. margin:0 auto;
  10. background-image:url(pexels-photo-757425.jpeg);
  11. background-size:cover;
  12. }
  13. header {
  14. width:100%;
  15. height:500px;
  16. }
  17. .header_holder{
  18. width:100%;
  19. height:50px;
  20. background-color:rgba(255,255,255,.2);
  21. display:flex;
  22.  
  23. }
  24. .header_holder h1 {
  25. font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
  26. font-weight:100;
  27. font-size:20px;
  28. line-height:50px;
  29. flex-grow:15;
  30. padding-left:2%;
  31. color:navy;
  32. }
  33. .header_holder .icon {
  34. font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
  35. font-weight:100;
  36. font-size:20px;
  37. line-height:50px;
  38. color:Navy;
  39. margin-right:2%;
  40. cursor:pointer;
  41. }
  42. .header_image{
  43. width:100%;
  44. height:450px;
  45. margin:0 auto;
  46. background-color:transparent;
  47. display:flex;
  48. }
  49. .header_image .box_farebny{
  50. width:60%;
  51. height:auto;
  52. background-color:rgba(255,255,255,.2);
  53. align-self:center;
  54. margin:0 auto;
  55. border-radius:15px;
  56. }
  57. .header_image .box_farebny h1 {
  58. color:Navy;
  59. font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
  60. text-align:center;
  61. padding-top:5%;
  62. font-size:30px;
  63. }
  64. .box_farebny p {
  65. font-size:20px;
  66. color:white;
  67. text-align:center;
  68. font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
  69. }
  70. .header_image .box_farebny a {
  71. background-color:transparent;
  72. border:2px solid #fff;
  73. border-radius:5px;
  74. width:30%;
  75. margin:5% auto;
  76. text-align:center;
  77. display:block;
  78. padding:5%;
  79. text-decoration:none;
  80. color:#fff;
  81. text-transform:uppercase;
  82. font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
  83. font-weight:700;
  84. font-size:25px;
  85. transition:ease .7s;
  86. }
  87. .header_image .box_farebny a:hover {
  88. background-color:rgba(0,0,128,.5);
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement