Advertisement
Guest User

Untitled

a guest
Jan 26th, 2021
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Lato:400,300,700|Montserrat:400,700);
  2.  
  3. *{
  4. margin: 0;
  5. padding: 0;
  6. font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  7. font-size:22px;
  8. }
  9.  
  10. .restaurant-race-class {
  11. display: flex;
  12. justify-content: center;
  13. flex-wrap: wrap;
  14. padding: 1.5rem;
  15. color: #aaa;
  16. }
  17. body{
  18. background-image: url(./softuni-wallpaper-1-1920x1080.jpg);
  19. background-position: top;
  20. }
  21.  
  22. h2 {
  23. color: white;
  24. padding: 0.3rem;
  25. }
  26. span {
  27. width: 25%;
  28. margin: 0 auto;
  29. height: 1px;
  30. display: block;
  31. border-bottom: 1px solid white;
  32. margin-bottom: 10px;
  33. }
  34.  
  35. textarea {
  36. background: #fff;
  37. border-radius: 5px;
  38. padding-left: 0.1rem;
  39. padding-right: 0.1rem;
  40. border: 1px solid #00BFFF;
  41. margin-right: 1.2rem;
  42. outline: none;
  43. color: black;
  44. font-size: 21px;
  45. width: 50%;
  46. resize: none;
  47. height: 20vh;
  48. width: 80%;
  49. text-align: center;
  50. }
  51.  
  52. #inputs, #outputs div{
  53. margin: 20px 0px 20px 20px;
  54. width: 1135px;
  55. text-align: center;
  56. padding-bottom: 20px;
  57. background-color: #fff;
  58. border-radius: 10px;
  59. padding-left: 35px;
  60. box-shadow: rgba(0, 0, 0, .15) 0 1px 3px;
  61. background: radial-gradient(black, transparent);
  62. text-shadow: black;
  63. color:white;
  64. border-bottom: 1px solid white;
  65. border-left: 1px solid white;
  66. border-top: 1px solid black;
  67. border-right: 1px solid black;
  68. }
  69.  
  70. label{
  71. font-size: 18px;
  72. }
  73. button{
  74. margin-top: 10px;
  75. font-size: 22px;
  76. margin-left: 5px;
  77. background-color: #03496B;
  78. outline: none;
  79. border-top-right-radius: 25%;
  80. border-bottom-left-radius: 40%;
  81. border-top-color: white;
  82. padding: 0.5rem;
  83. color: #fff;
  84. cursor: pointer;
  85. }
  86.  
  87. button:hover {
  88. box-shadow: 0px 1px 7px 4px white;
  89. }
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement