Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. /*
  2.  
  3. font-family: 'Quicksand', sans-serif;
  4. font-family: 'Comfortaa', cursive;
  5. font-family: 'Didact Gothic', sans-serif;
  6.  
  7. */
  8.  
  9. *{
  10. margin:0;
  11. padding:0;
  12. }
  13.  
  14. body{
  15. margin:0;
  16. padding:0;
  17. font-family: 'Didact Gothic', sans-serif;
  18. }
  19.  
  20. nav{
  21. position: fixed;
  22. top:0;
  23. left:0;
  24. width: 100%;
  25. height: 100px;
  26. padding: 10px 100px;
  27. box-sizing: border-box;
  28. background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,1));
  29. color:white;
  30. }
  31.  
  32.  
  33. #nordictitle{
  34. padding:0;
  35. margin:0;
  36. float: left;
  37. font-size: 60px;
  38. }
  39.  
  40. input[type=text] {
  41. border-radius: 25px;
  42. border-style: none;
  43. padding-right:30px;
  44. width:500px;
  45. height: 30px;
  46. float:right;
  47. }
  48.  
  49.  
  50. nav ul{
  51. list-style: none;
  52. float: right;
  53. margin:0;
  54. padding:0;
  55. display: flex;
  56. }
  57.  
  58.  
  59. nav ul li{
  60. list-style: none;
  61. }
  62.  
  63. nav ul li a{
  64. line-height:40px;
  65. color:white;
  66. padding:12px 30px;
  67. text-decoration: none;
  68. text-transform: uppercase;
  69. }
  70.  
  71.  
  72.  
  73. section.sec1{
  74. width: 100%;
  75. height: 100vh;
  76. background:url(../img/coffee_banner.png);
  77. background-size: cover;
  78. background-position: center;
  79. }
  80.  
  81.  
  82. .infobox{
  83. background-color: #212121;
  84. width:100%;
  85. height: 20vh;
  86. margin: auto;
  87. padding-top:50px;
  88. text-align: left;
  89. color:white;
  90. line-height: 30px;
  91. }
  92.  
  93. #lemonmilk{
  94. padding-left: 50px;
  95. font-size: 32px;
  96. width: 700px;
  97. line-height: 50px;
  98. }
  99.  
  100.  
  101. #iconlove{
  102. float:right;
  103. margin:20px 5px 0px;
  104. font-size: 55px;
  105. padding-right: 20px;
  106. }
  107.  
  108. .iconlinks{
  109. padding-right: 50px;
  110. }
  111.  
  112. .bodycontent{
  113. width:70%;
  114. }
  115.  
  116. a{
  117. color: lightgray;
  118. text-decoration: none;
  119. }
  120.  
  121. a:hover{
  122. color:white;
  123. }
  124.  
  125. .content p{
  126. width: 70%;
  127. margin:30px auto;
  128. text-align: justify;
  129. font-size: 20px;
  130. line-height: 30px;
  131. }
  132.  
  133. .sidepanel{
  134. text-align: left;
  135. float:right;
  136. background-color: pink;
  137. line-height: 35px;
  138. padding: 10vh 15vh 30vh 10vh;/* Top, Right, Bottom, Left */
  139. }
  140.  
  141. .sidepanel p{
  142. padding-bottom: 10vh;
  143. }
  144.  
  145. #sidelinks{
  146. color: blue;
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement