Myriad Future

main.css

💻 코드 1
(1)  body {
(2)    font-family: sans-serif;
(3)    font-size: 16px;
(4)    padding: 20px;
(5)  }
(6)  
(7)  table {
(8)    width: 100%;
(9)    border-collapse: collapse;
(10)  }
(11)  
(12)  th, td {
(13)    border: 1px solid #ccc;
(14)    padding: 8px;
(15)  }
(16)  
(17)  input, textarea {
(18)    width: 100%;
(19)    padding: 6px;
(20)    border: 1px solid #aaa;
(21)  }
(22)  
(23)  button {
(24)    padding: 6px 12px;
(25)    background: #007acc;
(26)    color: white;
(27)    border: none;
(28)    cursor: pointer;
(29)  }
(30)  
(31)  button:hover {
(32)    background: #005f99;
(33)  }
(34)  
(35)  a {
(36)    color: #007acc;
(37)    text-decoration: none;
(38)  }
(39)  
(40)  a:hover {
(41)    text-decoration: underline;
(42)    color: #005f99;
(43)  }
(44)  
(45)