Initial Commit
This commit is contained in:
156
public/assets/css/style.css
vendored
Normal file
156
public/assets/css/style.css
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
html {
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
/* padding-top: 30px; */
|
||||
font-size: 12px;
|
||||
position: relative;
|
||||
margin: 0;
|
||||
padding-bottom: 10rem;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
#img-center {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.footer-distributed {
|
||||
background-color: #292c2f;
|
||||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
font: normal 16px sans-serif;
|
||||
padding: 45px 50px;
|
||||
margin-top: 80px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-left p {
|
||||
color: #8f9296;
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Footer links */
|
||||
|
||||
.footer-distributed p.footer-links {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer-distributed p.footer-links a {
|
||||
display: inline-block;
|
||||
line-height: 1.8;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right {
|
||||
float: right;
|
||||
margin-top: 6px;
|
||||
max-width: 180px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right a {
|
||||
display: inline-block;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
background-color: #33383b;
|
||||
border-radius: 2px;
|
||||
font-size: 20px;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
line-height: 35px;
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
|
||||
/* If you don't want the footer to be responsive, remove these media queries */
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.footer-distributed .footer-left,
|
||||
.footer-distributed .footer-right {
|
||||
text-align: center;
|
||||
}
|
||||
.footer-distributed .footer-right {
|
||||
float: none;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
.footer-distributed .footer-left p.footer-links {
|
||||
line-height: 1.8;
|
||||
}
|
||||
}
|
||||
|
||||
.thumb-border {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.image {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.overlay {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: #000000;
|
||||
/*background-image: url({{assets('public/images/sports-thumbnails/opacity.png')}});*/
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
transition: .3s ease;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.thumb-border:hover .overlay {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.text {
|
||||
white-space: nowrap;
|
||||
color: white;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.text>a {
|
||||
color: white;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
|
||||
/* .breadcrumb {
|
||||
background-color: inherit;
|
||||
} */
|
||||
|
||||
.no-record {
|
||||
color: #b6b6b6;
|
||||
margin-bottom: 150px;
|
||||
}
|
||||
|
||||
.list-sport {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
Reference in New Issue
Block a user