style.css 713 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .hello{
  2. text-align: center;
  3. }
  4. h3 {
  5. margin: 40px 0 0;
  6. }
  7. ul {
  8. list-style-type: none;
  9. padding: 0;
  10. }
  11. li {
  12. display: inline-block;
  13. margin: 0 10px;
  14. }
  15. a {
  16. color: #42b983;
  17. }
  18. .logo {
  19. margin-top: 20px;
  20. width: 200px;
  21. height: 200px;
  22. }
  23. .taskListTable{
  24. width: 800px;
  25. box-sizing: border-box;
  26. border-collapse: collapse;
  27. }
  28. .taskListTable th{
  29. height: 30px;
  30. line-height: 30px;
  31. background-color: #d4e6fb;
  32. }
  33. .taskListTable td{
  34. height: 24px;
  35. line-height: 24px;
  36. }
  37. button {
  38. cursor: pointer;
  39. font-size: 12px;
  40. margin: 10px;
  41. padding: 5px 10px;
  42. color: #ffffff;
  43. background-color: #4a90e2;
  44. border: 1px solid #4a90e2;
  45. border-radius: 100px;
  46. }