1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- @charset "UTF-8";
- @import url("./reset.css");
- .tea, h1 {
- color: aqua;
- font-weight: lighter;
- font-style: italic;
- }
- ul li:last-child {
- color: #ff0;
- }
- * {
- margin: 0;
- padding: 0;
- list-style: none;
- text-decoration: none;
- box-sizing: border-box;
- }
- /*
- 今天天气真好
- */
- h1 {
- color: #f00;
- }
- ul {
- width: 700px;
- height: 700px;
- border: 10px dashed #0f0;
- }
- ul li {
- color: purple;
- font-size: 30px;
- font-weight: bold;
- }
- ul li:hover {
- color: #ff0;
- }
- ul li:nth-child(2):hover {
- color: #f00;
- }
- ul li:nth-child(3) {
- width: 300px;
- height: 300px;
- color: blue;
- background-color: yellow;
- border: 3px solid plum;
- box-shadow: 30px 20px 10px #f00;
- font-size: 10px;
- }
|