xlive/static/css/styles.css

71 lines
1.1 KiB
CSS

body {
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.platform {
border: 1px solid #ccc;
padding: 10px;
margin: 10px;
display: flex;
flex-direction: column;
align-items: center;
width: 200px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s;
}
.platform:hover {
transform: scale(1.05);
}
.platform img {
width: 100%;
height: auto;
margin-bottom: 10px;
}
.platform h2 {
font-size: 1.2em;
margin: 0.5em 0;
}
.platform p {
font-size: 0.9em;
color: #555;
text-align: center;
}
.platform a {
text-decoration: none;
color: #007BFF;
margin-top: auto;
padding: 10px;
background: #f8f9fa;
border: 1px solid #007BFF;
border-radius: 5px;
transition: background 0.2s;
}
.platform a:hover {
background: #007BFF;
color: #fff;
}
/* player */
#main_flash_alert {
display: none;
}
#video_player {
display: none;
width: 640px;
height: 360px;
background-color: black;
}