Advertisement
Baru_Berbagi

style.css

Oct 25th, 2022
965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.44 KB | None | 0 0
  1. /* Import Google font - Poppins */
  2. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
  3. *{
  4.     margin: 0;
  5.     padding: 0;
  6.     box-sizing: border-box;
  7.     font-family: 'Poppins', sans-serif;
  8. }
  9. body{
  10.     display: flex;
  11.     align-items: center;
  12.     justify-content: center;
  13.     background: #e5c0ee;
  14.     min-height: 100vh;
  15. }
  16. .wrapper{
  17.     width: 450px;
  18.     border-radius: 7px;
  19.     background: #fff;
  20.     padding: 30px 25px 40px;
  21. }
  22. .wrapper :where(textarea, input, select, button){
  23.     width  :100% ;
  24.     outline: none;
  25.     border: none;
  26.     font-size: 17px;
  27.     border-radius: 5px;
  28. }
  29. .wrapper textarea{
  30.     height: 300px;
  31.     width: 400px;
  32.     resize: none;
  33.     padding: 8px 13px;
  34.     border: 1px solid #ccc;
  35. }
  36. .wrapper .file-options{
  37.     display: flex;
  38.     margin-top: 19px;
  39.     align-items: center;
  40.     justify-content: space-between;
  41. }
  42. .file-options .file-name{
  43.     width: calc(100% / 2 - 8px);
  44. }
  45. .file-name  :where(input, .select-menu){
  46.     height: 50px;
  47.     padding: 0 15px;
  48.     margin-top: 6px;
  49.     border-radius: 5px;
  50.     border: 1px solid #bfbfbf;
  51. }
  52. .file-options .file-name input{
  53.   margin-top: 5px;
  54.   padding: 5px;
  55.  
  56. }
  57.  
  58. .save-as .select-menu select{
  59. margin-top: 5px;
  60. padding: 5px;
  61. }
  62. .wrapper button{
  63.     color: #fff;
  64.     align-items: center;
  65.     cursor: pointer;
  66.     background: #483c4b;
  67.     padding-left: 40%;
  68.     padding-right: 40%;
  69.     margin-top: 30px;
  70. }
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement