Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.35 KB | None | 0 0
  1. #yourbmi {
  2. margin-left: 100%;
  3. }
  4. *{
  5. margin: 0;
  6. padding: 0;
  7. list-style: none;
  8. text-decoration: none;
  9. }
  10. #wrapper {
  11. width: 100%;
  12. }
  13.  
  14. body {
  15. background-image: url("../images/minh.jpg");
  16. background-size: cover;
  17. background-repeat: none;
  18. background-attachment: fixed;
  19. }
  20.  
  21. #result {
  22. border: 3px solid white;
  23. background-color: rgb(0,0,0); /* Fallback color */
  24. background-color: rgba(61, 53, 53, 0.4); /* Black w/opacity/see-through */
  25. width: fit-content;
  26. text-align: center;
  27. margin-left: 47%;
  28. margin-top: 0%;
  29. font-size: 50px;
  30. font-family: 'Dancing Script';
  31. color: white;
  32. font-weight: bolder;
  33. }
  34.  
  35. .omg{
  36. font-family: 'Dancing Script';
  37. font-size: 180px;
  38. margin-left: 36%;
  39. color: #770000;
  40. margin-top: -5%;
  41. /* width: 100%; */
  42. display: inline-block;
  43. }
  44.  
  45. .describ{
  46. font-family: 'Dancing Script';
  47. width: 60%;
  48. text-align: center;
  49. font-size: 30px;
  50. margin-left: 20%;
  51. color: #770000;
  52. margin-top: 10px;
  53. }
  54.  
  55. .omgfoodtour {
  56. margin-top: 50px;
  57. }
  58.  
  59. #ip1, #ip2 {
  60. margin-top: 40px;
  61. margin-bottom: 20px;
  62. }
  63.  
  64. .enter input {
  65. margin-left: 34%;
  66. border-radius: 20px;
  67. display: block;
  68. width: 500px;
  69. height: 60px;
  70. font-size: 100%;
  71. }
  72. #calcu, #book{
  73. font-family: 'Dancing Script';
  74. background-color: #770000;
  75. border-radius: 50px;
  76. display: block;
  77. color: white;
  78. }
  79.  
  80. #calcu{
  81. width: 250px;
  82. font-family: 'Dancing Script';
  83. color: white;
  84. font-size: 50px;
  85. margin-top: 50px;
  86. margin-left: 42%;
  87. }
  88.  
  89. #book{
  90. font-size: 62px;
  91. margin-top: 19px;
  92. margin-left: 49%;
  93. width: 312px;
  94. }
  95.  
  96. button:hover {
  97. animation: shake 0.5s;
  98. animation-iteration-count: infinite;
  99. }
  100.  
  101. @keyframes shake {
  102. 0% { transform: translate(1px, 1px) rotate(0deg); }
  103. 10% { transform: translate(-1px, -2px) rotate(-1deg); }
  104. 20% { transform: translate(-3px, 0px) rotate(1deg); }
  105. 30% { transform: translate(3px, 2px) rotate(0deg); }
  106. 40% { transform: translate(1px, -1px) rotate(1deg); }
  107. 50% { transform: translate(-1px, 2px) rotate(-1deg); }
  108. 60% { transform: translate(-3px, 1px) rotate(0deg); }
  109. 70% { transform: translate(3px, 1px) rotate(-1deg); }
  110. 80% { transform: translate(-1px, -1px) rotate(1deg); }
  111. 90% { transform: translate(1px, 2px) rotate(0deg); }
  112. 100% { transform: translate(1px, -2px) rotate(-1deg); }
  113. }
  114.  
  115. #ip1:hover, #ip2:hover {
  116. border: 2px solid #90E6F5;
  117. }
  118.  
  119.  
  120. /* HEADER */
  121.  
  122.  
  123. .header{
  124. width: 100vw;
  125. height: 80px;
  126. display: block;
  127. background-color:white;
  128. }
  129.  
  130. .header1{
  131. background-color: #8B8970;
  132. width: 100vw;
  133. }
  134.  
  135. .fa {
  136. display: inline-block;
  137. padding: 5px;
  138. font-size: 20px;
  139. width: 0px;
  140. text-align: center;
  141. text-decoration: none;
  142. margin: 2px -56px;
  143. height: 30px;
  144. }
  145.  
  146. .fa-facebook , .fa-twitter ,.fa-instagram {
  147. color: white;
  148. margin-left: 5%;
  149.  
  150.  
  151. }
  152. .inner_header{
  153. width: 90%;
  154. height: 100%;
  155. display: block;
  156. margin: 0 auto;
  157. /* background-color: red; */
  158. }
  159.  
  160. .logo_container{
  161. height: 100%;
  162. display: table;
  163. float: left;
  164. }
  165.  
  166. .logo_container h1{
  167. color: #770000;
  168. height: 100%;
  169. display: table-cell;
  170. vertical-align: middle;
  171. font-family: 'Dancing Script';
  172. font-size: 50px;
  173. font-weight: 200px;
  174. }
  175.  
  176. .logo_container h1 span{
  177. font-weight: bold;
  178.  
  179. }
  180.  
  181. .navigation{
  182. float: right;
  183. height: 100%;
  184. }
  185.  
  186. .navigation a{
  187. height: 100%;
  188. display: table;
  189. float: left;
  190. padding: 0px 20px;
  191. }
  192.  
  193. .navigation a :last-child{
  194. padding-right: 0;
  195. }
  196.  
  197. .navigation a li{
  198. display: table-cell;
  199. vertical-align: middle;
  200. height: 100%;
  201. color:#770000;
  202. font-family: 'Montserrat';
  203. font-size: 16px;
  204. }
  205. #header11 {
  206. width: 100%;
  207. }
  208.  
  209. /* HET HEADER */
  210.  
  211. /* FOOTER */
  212. .footer{
  213. margin-top: 20px;
  214. width: 100vw;
  215. display: block;
  216. padding: 20px 0;
  217. box-sizing: border-box;
  218. background-color: #8B8970;
  219. height: fit-content;
  220. }
  221.  
  222. .inner_footer{
  223. display: flex;
  224. justify-content: space-around;
  225. margin: 0 auto;
  226. width: 100%;
  227. height: 100%;
  228. font-family: "Montserrat";
  229. font-size: 15px;
  230. color: white;
  231. }
  232.  
  233. .inner_footer .footer_third a {
  234. display: block;
  235. margin-top: 5px;
  236. color: white;
  237. }
  238. #comment{
  239. margin-left: 350px;
  240. }
  241. #boxcomment{
  242. margin-left: 300px;;
  243. }
  244.  
  245. /* .inner_footer .footer_third > span {
  246. margin-top: 10px;
  247. } */
  248. /* .inner_footer .footer_third{
  249. width: calc(21.6666666667% - 20px);
  250. margin-right: 10px;
  251. float: left;
  252. height: 100%;
  253. margin-top: 0;
  254. margin-bottom: auto;
  255. }
  256.  
  257. .inner_footer .footer_third :last-child{
  258. margin-right: 0;
  259. }
  260. .inner_footer .footer_third h1{
  261. font-family: "Montserrat";
  262. font-size: 22px;
  263. color: white;
  264. display: block;
  265. width: 100%;
  266. margin-bottom: 20px;
  267.  
  268. }
  269. .inner_footer .footer_third a{
  270. font-family: "Montserrat";
  271. font-size: 15px;
  272. color: white;
  273. display: block;
  274. width: 100%;
  275. margin-bottom: 10px;
  276. padding-bottom: 5px;
  277. }
  278. .inner_footer .footer_third span{
  279. color: white;
  280. font-family: 'Montserrat';
  281. font-size: 15px;
  282. font-weight: 200;
  283. display: block;
  284. width: 100%;
  285. padding-top: 0px; */
  286. /* } */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement