hello.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. input {
  2. display: input;
  3. padding: 2;
  4. background-color: #FFFFFF;
  5. width: 177px;
  6. height: 32px;
  7. color: #000000;
  8. border-top-color: rgb(48,48,48);
  9. border-left-color: rgb(48,48,48);
  10. border-right-color: rgb(48,48,48);
  11. border-bottom-color: rgb(48,48,48);
  12. border-width: 1px;
  13. font-family: "./assets/font/KaTeX_SansSerif-Regular.ttf";
  14. font-size: 14px;
  15. }
  16. button {
  17. background-color: rgb(239, 239, 239);
  18. width: 53px;
  19. height: 21px;
  20. color: #000000;
  21. border-width: 1px;
  22. border-top-color: rgb(48,48,48);
  23. border-left-color: rgb(48,48,48);
  24. border-right-color: rgb(48,48,48);
  25. border-bottom-color: rgb(48,48,48);
  26. font-family: "./assets/font/KaTeX_SansSerif-Regular.ttf";
  27. font-size: 14px;
  28. text-align: center;
  29. }
  30. textarea {
  31. padding: 2;
  32. text-rendering: auto;
  33. color: #000000;
  34. background-color: rgb(250, 250, 250);
  35. border-width: 1px;
  36. border-style: solid;
  37. border-color: rgb(133, 133, 133);
  38. height: 34px;
  39. width: 179px;
  40. }
  41. textarea:focus {
  42. border-color: #FF0000;
  43. border-width: 2px;
  44. }