Thành viên:Đức Anh/Trứng nướng/styles.css

Chú ý: Sau khi lưu thay đổi trang, bạn phải xóa bộ nhớ đệm của trình duyệt để nhìn thấy các thay đổi. Google Chrome, Firefox, Internet ExplorerSafari: Giữ phím ⇧ Shift và nhấn nút Reload/Tải lại trên thanh công cụ của trình duyệt. Để biết chi tiết và hướng dẫn cho các trình duyệt khác, xem Trợ giúp:Xóa bộ nhớ đệm.

.main-box {
    position: relative;
    margin: 1.2rem auto;
    padding: 1rem 2rem;
    width: 100%;
    color: #fff;
	font-family: "EB Garamond", serif;
    font-size: 1.4rem;
    background-color: #cced8e;
    box-shadow: 0 2px 5px #c5c5c5;
}

.main-box::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/9/9e/Baked_eggs.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.main-box *::selection {
    background: rgba(236,236,236,0.35);
}

.main-box a {
    color: #ffff76;
}

.main-box a:active,
.main-box a:focus {
    background-color: rgba(255,207,98,0.5);
    color: #fff;
}