Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.45 KB | None | 0 0
  1.  
  2. body {
  3. font-family: 'Indie Flower', cursive;
  4. background-color: #f5f5f5;
  5. }
  6.  
  7.  
  8. #Georgia {
  9. font-family:Georgia;
  10. font-size: 18px;
  11. }
  12.  
  13. /* Navbar*/
  14. .transparent {
  15. background: rgba(0, 0,0, 0.4);
  16. }
  17.  
  18. .navbar-toggler-icon {
  19. border: 3px solid;
  20. padding: 20px;
  21. background-color: #f17525;
  22. }
  23.  
  24. .nav-link, .navbar-brand {
  25. color: #f17525 !important;
  26. font-style: italic;
  27. font-size: 30px;
  28. }
  29.  
  30. .navbar a:hover {
  31. color: #f5f5f5 !important;
  32. }
  33.  
  34. media (min-width: 576px) {
  35. .navbar-brand {
  36. display: none;
  37. }
  38. }
  39.  
  40. /*Header billede*/
  41. header {
  42. height: 100vh;
  43. background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4) ), url(../images/header.jpg) fixed;
  44. background-position: center;
  45. background-repeat: no-repeat;
  46. background-size: cover;
  47. }
  48.  
  49. /*Banner tekst*/
  50. .banner-center {
  51. height: 100vh;
  52. color: #f5f5f5;
  53. display: flex;
  54. flex-direction: column;
  55. justify-content: center;
  56. }
  57.  
  58. /* Banner linje*/
  59. .banner-underline {
  60. width: 300px;
  61. border: 3px solid #f17525;
  62. margin: 0px auto 20px;
  63. }
  64.  
  65. .banner-center a {
  66. font-size: 30px;
  67. width: 300px;
  68. margin: 0px auto;
  69. display: inline-block;
  70. border: 3px solid #f5f5f5;
  71. color: #f5f5f5;
  72. text-decoration: none;
  73. border-radius: 25px;
  74. }
  75.  
  76. /*banner hover*/
  77. .banner-center a:hover,
  78. .banner a:focus {
  79. color: #f17525;
  80. }
  81.  
  82. /* Margin fra headeren*/
  83. .title {
  84. margin: 50px;
  85. }
  86.  
  87. /* SKills linje*/
  88.  
  89.  
  90.  
  91. .text-underline {
  92. width: 300px;
  93. border: 3px solid #f17525;
  94. margin: 0px auto 20px;
  95. }
  96.  
  97. /*Ikoner margin*/
  98. #skills .fa {
  99. margin-bottom: 10px;
  100. }
  101.  
  102. /* Skills knapper*/
  103. #skills a {
  104. margin: auto; 0px;
  105. width: 300px;
  106. margin-bottom: 100px;
  107. background-color: #f17525;
  108. color: #f5f5f5;
  109. }
  110.  
  111. /* Hover farve */
  112. #skills a:hover {
  113. background-color: #22252a;
  114. transform: translateY(-3px);
  115. box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  116. }
  117.  
  118. #about {
  119. background-color: #22252a;
  120. color: #f5f5f5;
  121. background-position: left;
  122. background-repeat: no-repeat;
  123. z-index: 10;
  124.  
  125.  
  126.  
  127. }
  128.  
  129. #about .pic {
  130. height: 600px;
  131. /* Sætter skrå px border på ! */
  132. border-bottom: 600px solid transparent;
  133. border-left: 100px solid #22252a;
  134. background: url(../images/about.jpg);
  135. background-attachment: fixed;
  136. background-position: center;
  137. background-repeat: no-repeat;
  138. background-size: cover;
  139.  
  140.  
  141. }
  142.  
  143. #about .box {
  144. display: flex;
  145. flex-direction: column;
  146. justify-content: center;
  147. }
  148.  
  149. #about a {
  150. margin: auto; 0px;
  151. width: 300px;
  152. margin-bottom: 100px;
  153. background-color: #f17525;
  154. color: #f5f5f5;
  155. margin-top: 20px;
  156. }
  157.  
  158. /* Hover farve */
  159. #about a:hover {
  160. background-color: #f5f5f5;
  161. color: #22252a;
  162. transform: translateY(-3px);
  163. box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  164. }
  165.  
  166. /* Kontakt form*/
  167.  
  168. #contact {
  169. padding: 40px;
  170. background-color: #f5f5f5;
  171. }
  172.  
  173. #contact .form-control {
  174. border-radius: 0px !important;
  175. font-size: 24px;
  176. margin: 20px;
  177. }
  178.  
  179. #contact button {
  180. background-color: #f17525;
  181. font-size: 24px;
  182. margin: 20px;
  183.  
  184. }
  185.  
  186. #contact button:hover {
  187. background-color: #22252a;
  188. transform: translateY(3px);
  189. box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  190. }
  191.  
  192. #comments {
  193. height: 150px;
  194. }
  195.  
  196. /* Footer */
  197.  
  198. #footer {
  199. background: url(../images/coffee.png);
  200. background-repeat: no-repeat;
  201. background-position: left;
  202.  
  203. padding: 40px;
  204. color: #f5f5f5;
  205. background-color: #22252a;
  206.  
  207. }
  208.  
  209. #footer .footer-icons {
  210. padding-top: 30px;
  211. padding-bottom: 30px;
  212. }
  213.  
  214. #footer .footer-icons a {
  215. color: #f17525;
  216. text-decoration: none;
  217. }
  218.  
  219. #footer .footer-icons a:hover {
  220. color: #f5f5f5;
  221. }
  222.  
  223. /* Google map */
  224. .map-responsive {
  225. display: flex;
  226. justify-content: center;
  227. background-color: #f5f5f5;
  228. }
  229.  
  230. /* Google map */
  231. #google {
  232. padding: 0;
  233. padding-right: 0px;
  234. padding-left: 0px;
  235. margin-bottom: 50px;
  236.  
  237. }
  238.  
  239. #googlerow {
  240. background-color: #f5f5f5;
  241. }
  242.  
  243. @media (max-width: 991px) {
  244.  
  245. #google {
  246. margin-bottom: 0px;
  247. }
  248.  
  249. }
  250.  
  251. .scrollup {
  252. display: flex;
  253. justify-content: flex-end;
  254. text-decoration: none;
  255. color: #f17525;
  256.  
  257. }
  258.  
  259. .scrollup:hover {
  260. color: #f5f5f5;
  261. text-decoration: none;
  262. }
  263.  
  264. .menu-coffee {
  265. background: url(/images/menukort/kaffe.jpg);
  266. height: 35vh;
  267. background-attachment: fixed;
  268. background-position: center;
  269. background-repeat: no-repeat;
  270. background-size: cover;
  271. }
  272. .drinks-menu{
  273. background: url(/images/menukort/te-og-drikke.jpg);
  274. height: 35vh;
  275. background-attachment: fixed;
  276. background-position: center;
  277. background-repeat: no-repeat;
  278. background-size: cover;
  279. }
  280.  
  281. .food-menu{
  282. background: url(/images/menukort/muffins.jpg);
  283. height: 35vh;
  284. background-attachment: fixed;
  285. background-position: center;
  286. background-repeat: no-repeat;
  287. background-size: cover;
  288. }
  289. .title-menu {
  290. font-family: Prestige Elite Std;
  291. font-size: 10vh;
  292. padding-top: 50px;
  293. }
  294.  
  295. .menu-item {
  296. font-family: Prestige Elite Std;
  297. margin: 35px 0;
  298. font-size: 18px;
  299. font-size: 2.5vh;
  300. line-height: 100% !important;
  301. }
  302.  
  303. .menu-item-price{
  304.  
  305. float: right;
  306. font-weight: bold;
  307. margin-top: -22px;
  308. font-size: 2.5vh;
  309. line-height: 100% !important;
  310. }
  311. .menu-item-name{
  312. line-height: 100% !important;
  313. border-bottom: 2px dotted rgb(213, 213, 213);
  314. }
  315.  
  316. .menu-underline {
  317. width: 35vh;
  318. border: 3px solid #f17525;
  319. margin: 0px auto 20px;
  320. }
  321.  
  322. .padding-menu-left {
  323. padding-right: 15%;
  324. }
  325.  
  326. .padding-menu-right{
  327. padding-left: 15%;
  328.  
  329. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement