NavigateX/static/LOOK/News.css

58 lines
1.0 KiB
CSS

#TitleA {
background-color: #42414d;
width: 40%;
height: 25px;
border-radius: 8px;
color: #c9c9c98f;
border: none;
padding-left: 30px;
box-shadow: 0px 0px 10px #1d1c22;
display: block;
margin: 0 auto;
margin-bottom: 20px;
font-size: 120%;
font-weight: lighter;
}
#TitleA:hover {
transform: scale(1.05);
background-color: #4c5a66;
box-shadow: 0px 0px 15px #7fc0df;
border: 2px solid #b1e6ff;
margin-bottom: 24px;
}
#googleNewsContainer {
max-width: 500px;
margin: 0 auto;
}
#newsList {
list-style: none;
padding: 0;
}
.newsItem {
margin-bottom: 20px;
background-color: #42414d;
box-shadow: 0px 0px 10px #1d1c22;
padding: 10px;
border-radius: 5px;
}
.newsItem:hover {
transform: scale(1.01);
background-color: #644c66;
box-shadow: 0px 0px 15px #df7fd7;
border: 2px solid #ffb1f2;
}
.newsItem a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
}
.newsItem a:hover {
font-weight: bold;
color: #00aeff;
}