123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764 |
- @import url(https://fonts.googleapis.com/css?family=Roboto);
- /* GLOBALS */
- body {
- margin: 0;
- font-family: Avenir, Helvetica, sans-serif;
- line-height: 1.5;
- }
-
- a, a:hover, a:focus, a:active {
- text-decoration: none;
- color: #fff;
- }
-
- .modal {
- overflow-y: auto;
- }
-
- /* HEADER */
- #main-header {
- min-height: 8rem;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 2;
- background: rgba(255, 255, 255, 0.7);
- -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
- box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
- -webkit-backdrop-filter: blur(10px);
- backdrop-filter: blur(10px);
- }
-
- #logo {
- font-size: 1.7em;
- text-decoration: none;
- color: #606060;
- height: initial;
- padding: 0.3em 1em;
- text-align: center;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- width: 155px;
- }
-
- #logo:hover,
- #logo:active,
- #logo:focus {
- color: #333;
- }
-
- #account {
- padding: 0.3em 1em;
- }
-
- .nav-link {
- font-size: 1.2em;
- padding: calc(1em / 2) 1em;
- text-decoration: none;
- color: #333;
- position: relative;
- -webkit-transition: color 150ms ease-in-out;
- transition: color 150ms ease-in-out;
- }
-
- .nav-link:after {
- content: '';
- position: absolute;
- bottom: 0;
- height: 2px;
- left: 1em;
- right: 1em;
- background-color: #606060;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- -webkit-transition: -webkit-transform 150ms ease-in-out;
- transition: -webkit-transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
- }
-
- .nav-link:hover::after,
- .nav-link:focus::after,
- .nav-link:active::after {
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
-
- .nav-link:hover,
- .nav-link:focus,
- .nav-link:active {
- color: #606060;
- }
-
- .sign-out {
- padding: 0.5em 1em;
- background-color: #217ce4;
- color: #fff;
- text-decoration: none;
- -webkit-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.05), -1px 1px 2px 1px rgba(0, 0, 0, 0.02);
- box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.05), -1px 1px 2px 1px rgba(0, 0, 0, 0.02);
- -webkit-transition-property: background-color, -webkit-box-shadow;
- transition-property: background-color, -webkit-box-shadow;
- transition-property: background-color, box-shadow;
- transition-property: background-color, box-shadow, -webkit-box-shadow;
- -webkit-transition-duration: 150ms;
- transition-duration: 150ms;
- -webkit-transition-timing-function: ease-in-out;
- transition-timing-function: ease-in-out;
- }
-
- .sign-out:hover,
- .sign-out:focus,
- .sign-out:active {
- background-color: #3d88df;
- -webkit-box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
- box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
- }
-
- /* GOOGLE BUTTON */
- .google-button {
- height: 40px;
- border-width: 0;
- background: #fff;
- color: #737373;
- border-radius: none;
- white-space: nowrap;
- -webkit-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.05), -1px 1px 2px 1px rgba(0, 0, 0, 0.02);
- box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.05), -1px 1px 2px 1px rgba(0, 0, 0, 0.02);
- -webkit-transition-property: background-color, -webkit-box-shadow;
- transition-property: background-color, -webkit-box-shadow;
- transition-property: background-color, box-shadow;
- transition-property: background-color, box-shadow, -webkit-box-shadow;
- -webkit-transition-duration: 150ms;
- transition-duration: 150ms;
- -webkit-transition-timing-function: ease-in-out;
- transition-timing-function: ease-in-out;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-pack: distribute;
- justify-content: space-around;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
-
- .google-button:focus,
- .google-button:hover {
- -webkit-box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
- box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.1);
- cursor: pointer;
- }
-
- .google-button:active {
- background-color: #e5e5e5;
- -webkit-box-shadow: none;
- box-shadow: none;
- -webkit-transition-duration: 10ms;
- transition-duration: 10ms;
- }
-
- .google-button__icon {
- margin: 5px;
- width: 18px;
- height: 18px;
- }
-
- .google-button__text {
- padding: 0 12px;
- font-size: 14px;
- font-family: 'Roboto', Arial, sans-serif;
- }
-
- /* (EXPERIENCES PAGE) MAIN SECTION */
- #experience-main {
- background-color: #606060;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- min-height: calc(90vh - 8rem - 10vh);
- padding: 3em 5em;
- }
-
- #experience-main h3 {
- color: #606060;
- }
-
- .experience-lead {
- color: #fff;
- font-size: 2em;
- margin: 0 0 2em 0;
- border-bottom: #fff;
- border-bottom-width: 3px;
- border-bottom-style: solid;
- }
-
- #experience-content {
- display: -ms-grid;
- display: grid;
- grid-gap: 2em;
- -ms-grid-columns: 1fr 1fr 1fr;
- grid-template-columns: 1fr 1fr 1fr;
- margin-bottom: 1em;
- }
-
- .grid-box {
- background-color: #fff;
- height: 15em;
- width: 15em;
- border-radius: 15px;
- -webkit-box-shadow: 1px 1px 3px 1px #333;
- box-shadow: 1px 1px 3px 1px #333;
- -ms-grid-column-align: center;
- justify-self: center;
- padding: 3em 2em;
- position: relative;
- -webkit-transition: -webkit-transform 150ms ease-in-out;
- transition: -webkit-transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
- cursor: pointer;
- }
-
- .grid-box .box-title {
- color: #333;
- font-size: 1.5em;
- margin-bottom: 2em;
- }
-
- .grid-box .box-dates {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- color: #606060;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
-
- .grid-box .box-weeks {
- color: #606060;
- }
-
- .grid-box .box-edit {
- position: absolute;
- right: 0;
- bottom: 0;
- font-size: 1.5em;
- background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#e4e1d7));
- background-image: linear-gradient(to bottom right, #fff, #e4e1d7);
- /*radial-gradient(circle 200px at bottom right, #fff, $background-color); */
- height: 2em;
- width: 2em;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- border-bottom-right-radius: 15px;
- }
-
- .grid-box .box-edit a {
- color: #217ce4;
- }
-
- .grid-box .box-weeks.warning {
- color: #c83631;
- font-size: 1.1em;
- }
-
- .grid-box#new-experience {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -ms-flex-pack: distribute;
- justify-content: space-around;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
-
- .grid-box#new-experience span {
- color: #217ce4;
- font-size: 5em;
- }
-
- .grid-box#new-experience h4 {
- color: #606060;
- margin: 0;
- }
-
- .grid-box:hover {
- -webkit-transform: translateY(-5px);
- transform: translateY(-5px);
- }
-
- /* WELCOME SECTION */
- #welcome {
- margin-top: 8rem;
- min-height: 25rem;
- background: #333 url(../img/cytonn-photography-GJao3ZTX9gU-unsplash.jpeg) no-repeat top left;
- background-size: cover;
- position: relative;
- background-blend-mode: screen;
- border-bottom: 3px solid #f0c873;
- }
-
- #welcome-text {
- position: absolute;
- bottom: 2.6rem;
- left: 5vw;
- width: 30%;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- }
-
- #welcome-image {
- height: 75px;
- width: 75px;
- border-radius: 50%;
- margin-bottom: 15px;
- border: 2px solid #fff;
- -webkit-box-shadow: 1px 1px 10px 0px #222;
- box-shadow: 1px 1px 10px 0px #222;
- }
-
- #welcome-user {
- color: #fff;
- text-shadow: 1px 1px 5px #222;
- font-size: 3rem;
- margin: 0;
- }
-
- /* (LOGIN PAGE) MAIN SECTION */
- #home-main {
- background-color: #606060;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- min-height: calc(80vh - 8rem - 10vh);
- padding: 2.5em 2em;
- color: #fff;
- }
-
- #home-main h3 {
- font-size: 1.7em;
- font-weight: 900;
- }
-
- #home-main p {
- font-size: 1.3em;
- }
-
- #main-sidebar {
- -webkit-box-flex: 1;
- -ms-flex: 1;
- flex: 1;
- padding-left: 2em;
- }
-
- #main-sidebar h3 {
- font-weight: 700;
- }
-
- #main-sidebar ul {
- margin: 0;
- padding-left: 1em;
- }
-
- #main-sidebar li {
- list-style: none;
- font-size: 1.3em;
- }
-
- #main-sidebar a {
- opacity: 0.7;
- text-decoration: none;
- }
-
- #main-sidebar a.active,
- #main-sidebar a:hover,
- #main-sidebar a:focus,
- #main-sidebar a:active {
- opacity: 1;
- }
-
- .main-content {
- -webkit-box-flex: 3;
- -ms-flex: 3;
- flex: 3;
- overflow: hidden;
- }
-
- .main-content-box {
- display: none;
- }
-
- .main-content-box.show {
- display: initial;
- }
-
- .main-content-box #team-images {
- display: -ms-grid;
- display: grid;
- -ms-grid-columns: (1fr)[2];
- grid-template-columns: repeat(2, 1fr);
- gap: 1em;
- justify-items: center;
- margin: 2em 0;
- }
-
- .main-content-box #team-images img {
- height: 100px;
- width: 100px;
- border-radius: 50%;
- border: 2px #fff solid;
- -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3);
- box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.3);
- }
-
- #contact-info {
- margin-left: 3.5rem;
- opacity: 0.8;
- }
-
- .login-hr {
- border-width: 4px;
- border-radius: 3px;
- }
-
- /* SHOWCASE */
- #showcase {
- margin-top: 8rem;
- min-height: calc(100vh - 8rem);
- background: #333 url(../img/andrew-neel-cckf4TsHAuw-unsplash.jpeg) no-repeat left top;
- background-size: cover;
- position: relative;
- background-blend-mode: screen;
- border-bottom: 3px #f0c873 solid;
- }
-
- #showcase-text {
- position: absolute;
- top: 10vh;
- right: 5vw;
- width: 40%;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- text-shadow: 1px 1px 5px #222;
- }
-
- #showcase-heading {
- font-size: 3em;
- color: #fff;
- width: 100%;
- margin-bottom: 0.25em;
- text-align: right;
- }
-
- #showcase-link {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
- }
-
- #showcase-link a {
- color: #fff;
- font-size: 1.8em;
- text-decoration: underline;
- cursor: pointer;
- }
-
- #showcase-link a:hover {
- text-decoration: none;
- }
-
- /* (EXPERIENCE PAGE) SHOWCASE SECTION */
- #view-experience-showcase {
- background-color: #606060;
- margin-top: 8rem;
- color: #fff;
- border-bottom: 3px solid #f0c873;
- }
-
- #view-experience-buttons {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- height: 100%;
- max-width: 18em;
- margin: 0 auto;
- }
-
- #experience-pen {
- color: #fff;
- background-color: #217ce4;
- border-radius: 15px;
- padding: 0.75em;
- font-size: 2em;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
- box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.3);
- cursor: pointer;
- -webkit-transition: -webkit-transform 150ms ease-in-out;
- transition: -webkit-transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
- }
-
- #experience-pen:hover,
- #experience-pen:focus,
- #experience-pen:active {
- -webkit-transform: translateY(-5px);
- transform: translateY(-5px);
- }
-
- #view-experience-tabs {
- font-size: 1.2em;
- margin: 1em 0;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-pack: distribute;
- justify-content: space-around;
- }
-
- #view-experience-tabs a {
- font-size: 1.2em;
- padding: 0 1em;
- text-decoration: none;
- position: relative;
- -webkit-transition: opacity 150ms ease-in-out;
- transition: opacity 150ms ease-in-out;
- opacity: 0.6;
- font-weight: bold;
- }
-
- #view-experience-tabs a:after {
- content: '';
- position: absolute;
- bottom: 0;
- height: 1px;
- left: 1em;
- right: 1em;
- background-color: #fff;
- -webkit-transform: scaleX(0);
- transform: scaleX(0);
- -webkit-transition: -webkit-transform 150ms ease-in-out;
- transition: -webkit-transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
- }
-
- #view-experience-tabs a:hover::after,
- #view-experience-tabs a:focus::after,
- #view-experience-tabs a:active::after,
- #view-experience-tabs a.active::after {
- -webkit-transform: scaleX(1);
- transform: scaleX(1);
- }
-
- #view-experience-tabs a.active,
- #view-experience-tabs a:hover,
- #view-experience-tabs a:focus,
- #view-experience-tabs a:active {
- opacity: 1;
- }
-
- /* (EXPERIENCE PAGE) MAIN SECTION */
- .main-content-box#calendar,
- .main-content-box#questionnaires,
- .main-content-box#moments,
- .main-content-box#milestones {
- min-height: calc(80vh - 8rem - 10vh);
- }
-
- #view-experience-content {
- background-color: #fff;
- min-height: calc(100vh - 8rem);
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
-
- /* FOOTER */
- #main-footer {
- background: #2e2e2e;
- color: #fff;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- min-height: 10vh;
- padding: 1.5em;
- border-top: 3px solid #f0c873;
- }
-
- #main-footer p {
- margin: 0;
- font-size: 1.2em;
- }
-
- #main-footer a {
- color: #aaa;
- text-decoration: none;
- }
-
- #main-footer a:hover,
- #main-footer a:active,
- #main-footer a:focus {
- color: #fff;
- text-decoration: underline;
- }
-
- /* MEDIA QUERIES */
- @media (max-width: 768px) {
- #showcase {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- }
- #showcase-text {
- position: initial;
- min-width: 70%;
- }
- #showcase-heading {
- text-align: center;
- }
- #showcase-link {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- #main-sidebar {
- display: none;
- }
- .main-content-box {
- display: initial;
- }
- #view-experience-buttons {
- margin: 1rem auto;
- }
- #experience-lead {
- text-align: center;
- }
- #experience-content {
- -ms-grid-columns: 1fr 1fr;
- grid-template-columns: 1fr 1fr;
- }
- }
-
- @media (max-width: 580px) {
- #experience-lead h2 {
- margin: 20px auto 10px auto;
- }
- #experience-content {
- -ms-grid-columns: 1fr;
- grid-template-columns: 1fr;
- }
- }
-
- @media (min-width: 1080px) {
- #experience-content {
- -ms-grid-columns: (1fr)[4];
- grid-template-columns: repeat(4, 1fr);
- }
- }
- /*# sourceMappingURL=style.css.map */
|