49 lines
846 B
SCSS
49 lines
846 B
SCSS
/* ==============
|
|
Account Pages
|
|
===================*/
|
|
.accountbg {
|
|
background: url("../images/bg-account.jpg");
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
background-size: cover;
|
|
background-position: center;
|
|
box-shadow: inset 0 0 0 2000px rgba(31, 35, 60, 0.8);
|
|
}
|
|
|
|
.wrapper-page {
|
|
margin: 7.5% auto;
|
|
max-width: 460px;
|
|
position: relative;
|
|
|
|
.logo-admin {
|
|
font-size: 28px;
|
|
line-height: 70px;
|
|
}
|
|
|
|
.card {
|
|
border: 7px double $primary;
|
|
border-radius: 10px;
|
|
}
|
|
}
|
|
|
|
.user-thumb {
|
|
position: relative;
|
|
z-index: 999;
|
|
img {
|
|
height: 88px;
|
|
margin: 0 auto;
|
|
width: 88px;
|
|
}
|
|
}
|
|
|
|
.ex-page-content {
|
|
h1 {
|
|
font-size: 98px;
|
|
font-weight: 500;
|
|
line-height: 150px;
|
|
text-shadow: rgba(61, 61, 61, 0.3) 1px 1px, rgba(61, 61, 61, 0.2) 2px 2px, rgba(61, 61, 61, 0.3) 3px 3px;
|
|
}
|
|
}
|