|
@@ -0,0 +1,73 @@
|
|
|
+.home-page {
|
|
|
+ background-image: url('https://structureofintellect.files.wordpress.com/2017/09/bubble-test.jpg');
|
|
|
+ background-attachment: fixed;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ background-position: center center;
|
|
|
+ // height: 85vh;
|
|
|
+ padding-top: 11.5vh;
|
|
|
+ padding-bottom: 9vh;
|
|
|
+ font-family: 'Cormorant Infant', serif;
|
|
|
+ &__about,
|
|
|
+ &__links-container, {
|
|
|
+ margin: auto;
|
|
|
+ background: rgba(211,211,211, .9);
|
|
|
+ box-shadow: 0 0 10px grey;
|
|
|
+ }
|
|
|
+ &__about {
|
|
|
+ width: 65%;
|
|
|
+ text-align: center;
|
|
|
+ padding: 25px 40px;
|
|
|
+ .description {
|
|
|
+ &__inline {
|
|
|
+ &--pretty {
|
|
|
+ color: seagreen;
|
|
|
+ text-transform: uppercase;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &__divider {
|
|
|
+ width: 60%;
|
|
|
+ }
|
|
|
+ &__main {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &__links-container {
|
|
|
+ margin-top: 45px;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 25%;
|
|
|
+ padding: 9vh;
|
|
|
+ }
|
|
|
+ // not correct spelling -> have to ask && change
|
|
|
+ &__links {
|
|
|
+ border: none;
|
|
|
+ box-shadow: 0 0 10px grey;
|
|
|
+ background: rgba(232,230, 230, 0.9);
|
|
|
+ padding: 3vh 0;
|
|
|
+ margin: 5px;
|
|
|
+ text-transform: uppercase;
|
|
|
+ font-family: 'Cormorant Infant', serif;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 16px;
|
|
|
+ text-align: center;
|
|
|
+ width: 20vh;
|
|
|
+ @media screen and (max-width: 1125px) {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ transition: all 0.6s ease-in-out;
|
|
|
+ }
|
|
|
+ &__links:hover {
|
|
|
+ transform: rotate(360deg);
|
|
|
+ }
|
|
|
+
|
|
|
+ &__links--sign-in, {
|
|
|
+ color: orangered;
|
|
|
+ }
|
|
|
+ &__links--sign-up {
|
|
|
+ color: green;
|
|
|
+ }
|
|
|
+}
|