78 lines
1001 B
CSS
78 lines
1001 B
CSS
|
|
a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
.menu {
|
|
|
|
}
|
|
|
|
.login {
|
|
|
|
}
|
|
.login div {
|
|
height: 30px;
|
|
color: white;
|
|
background-color: rgb(29, 92, 241);
|
|
|
|
}
|
|
|
|
.menu ul li {
|
|
list-style: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
.menu ul li a:hover {
|
|
color: red;
|
|
}
|
|
|
|
.menu ul li a:focus {
|
|
color: green;
|
|
}
|
|
|
|
.menu ul li a::after {
|
|
color: blue;
|
|
}
|
|
|
|
.serchbutton input {
|
|
width: 500px;
|
|
height: 44px;
|
|
transition: all 1s ease;
|
|
}
|
|
|
|
.serchbutton input:focus {
|
|
width: 550px;
|
|
}
|
|
|
|
.serchbutton div {
|
|
width: 108px;
|
|
height: 44px;
|
|
color: white;
|
|
background-color: blue;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
background: green;
|
|
}
|
|
|
|
.hottext_bottom ul li {
|
|
list-style: none;
|
|
}
|
|
|
|
.hottext_left {
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
text-shadow: 2px 0 2px #000;
|
|
}
|
|
.hottext_bottom > ul+lii{
|
|
font-weight: 400;
|
|
}
|
|
.copyright {
|
|
width: auto;
|
|
height: 90px;
|
|
font-size: 14px;
|
|
color: #d8d8d8;
|
|
background: brown;
|
|
text-align: center;
|
|
} |