Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. * {box-sizing: border-box}
  2.  
  3. #welcomePage {
  4. text-align: center;
  5. color: #8B7765;
  6. margin-top: 200px;
  7. display: "black";
  8. }
  9. /* Set height of body and the document to 100% to enable "full page tabs" */
  10. body, html {
  11. height: 100%;
  12. margin: auto;
  13. font-family: Arial;
  14. background-color: #FFC1C1;
  15. }
  16. .tab {
  17. padding-left: 20px;
  18. }
  19. /* Style tab links */
  20. .tablink {
  21. background-color: #9874;
  22. color: left;
  23. float: center;
  24. outline: none;
  25. cursor: pointer;
  26. padding: 14px 16px;
  27. font-size: 17px;
  28. width: 25%;
  29. border-style: outset;
  30. border-color: gray;
  31. border-radius: 0px 25px 0px 0px;
  32.  
  33. }
  34.  
  35. .tablink:hover {
  36. background-color: #7777;
  37. }
  38.  
  39. /* Style the tab content (and add height:100% for full page content) */
  40. .tabcontent {
  41. color: black;
  42. display: none;
  43. padding: 80px 50px;
  44. height: 100%;
  45. float: center;
  46. border-color: gray;
  47. border-style: outset;
  48. border-radius: 8px;
  49. background-size: cover;
  50. background-image: url("http://yourbody-ua.info/wp-content/uploads/2018/05/powerpoint-background-pink-flower-parksandrecgifs-inside-powerpoint-background-pink-flower.jpg");
  51. }
  52.  
  53. /* Style */
  54. #Administration button{
  55. padding: 2px;
  56. padding-left:5px;
  57. padding-right:5px;
  58. margin-left: 30px;
  59. font-weight: bold;
  60. font-size: 15px;
  61. background-color: #DB7093;
  62. }
  63.  
  64. select,input{
  65. padding: 2px;
  66. margin: 14px;
  67. }
  68.  
  69. #saveButton {
  70. margin-top: 50px;
  71. position: absolute;
  72. left: 700px;
  73.  
  74. }
  75.  
  76. #save {
  77. padding: 2px;
  78. padding-left:5px;
  79. padding-right:5px;
  80. margin-left: 40px;
  81. font-weight: bold;
  82. font-size: 15px;
  83. background-color: #DB7093;
  84. margin-top: 50px;
  85. position: absolute;
  86. left: 500px;
  87. }
  88.  
  89. #Administration p {
  90. padding: 0px;
  91. margin: 0px;
  92. border: none;
  93. position: relative;
  94. left: 299px;
  95. height: auto;
  96. }
  97. #Administration p input{
  98. padding: 2px;
  99. margin: 2px;
  100. }
  101.  
  102. #makeForm p{
  103. padding: 0px;
  104. margin: 0px;
  105. border: none;
  106. height: auto;
  107. }
  108.  
  109. .row {
  110. display: -webkit-flex;
  111. display: flex;
  112. -webkit-align-items: baseline;
  113. align-items: baseline;
  114. width: 400px;
  115. }
  116.  
  117. .row div {
  118. width: 150px;
  119. }
  120.  
  121. .row div p {
  122. float: center;
  123. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement