diff options
| -rwxr-xr-x | public/assets/stylesheets/app.css | 90 |
1 files changed, 87 insertions, 3 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 51bd244..f291963 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -6,10 +6,8 @@ outline:0; font-family: 'Lato', sans-serif; -webkit-font-smoothing: subpixel-antialiased; - -webkit-user-select: none; - -moz-user-select: none; - user-select: none; } + *, *:before, *:after { moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -17,7 +15,21 @@ body{ overflow-x:hidden; } +::-moz-selection { + color: white; + background: black; +} + +::selection { + color: white; + background: black; +} +body.editing *{ + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} body.noOverflow{ overflow:hidden; } @@ -2115,3 +2127,75 @@ a[data-role="forgot-password"] { 0%{height:250px;} 100%{height:500px;top:2px;} } + + +/* MOBILE */ + + +@media (max-width: 680px) { + .logo { + padding: 0px 4px 0px 8px; + } + .logo svg { + width: 70px; + height: 37px; + } + + .topLinks a { + padding: 12px 8px; + color: black; + font-weight: 400; + float: left; + text-decoration: none; + font-size: 14px; + } + .page h1 { + font-size: 26px; + padding: 10px 0 15px 0; + border-top: 1px solid; + } + .hero { + height: 450px; + margin-top: 41px; + } + .page .profilepage { + margin-top: 41px; + } + .profilepage .bio { + height: 180px; + width: 50%; + } + .profilepage .bio h2 { + font-weight: 300; + font-size: 30px; + } + .profilePic { + width: 50%; + height: 180px; + } + .projectList.about { + text-align: center; + } + .projectList.about .item .rap { + padding: 0; + } + .projectList.about .item span:nth-child(1) { + width: 100%; + height: 150px; + } + .projectList.about .item span:nth-child(2) { + width: 100%; + padding: 10px 0; + } + .projectList.about .item:nth-child(2) { + padding: 50px 0; + } + .page .viewMore.btn { + text-decoration: none; + font-size: 20px; + padding: 20px 0; +} +.footer a, .footer span { +margin: 9px; +} +}
\ No newline at end of file |
