29 lines
398 B
CSS
29 lines
398 B
CSS
.hero {
|
|
padding: 20px;
|
|
position: relative;
|
|
text-align: center;
|
|
color: #eee;
|
|
max-height: 120px;
|
|
min-width: 120px;
|
|
background-color: #607D8B;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.hero:hover {
|
|
background-color: #EEE;
|
|
cursor: pointer;
|
|
color: #607d8b;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.hero {
|
|
font-size: 10px;
|
|
max-height: 75px; }
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.hero {
|
|
min-width: 60px;
|
|
}
|
|
}
|