Skip to content

Commit

Permalink
Added resources and css file
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLivingston32 committed Aug 4, 2020
1 parent e29378d commit 749427a
Show file tree
Hide file tree
Showing 8 changed files with 129 additions and 0 deletions.
Binary file added resources/Logo/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Logo/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Logo/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Logo/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Logo/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/Logo/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions resources/Logo/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
128 changes: 128 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap");

html {
box-sizing: border-box;
}

body {
margin: 0;
min-height: 100vh;
background-color: #fb4747;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%23000000' fill-opacity='0.49'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
font-family: "Raleway", sans-serif;
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}

.quote-container {
width: auto;
max-width: 900px;
padding: 20px 30px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.4);
}

.quote-text {
font-size: 2.75rem;
}

.long-quote {
font-size: 2rem;
}

.fa-quote-left {
font-size: 4rem;
color: #1a8cff;
}

/* .fa-quote-right {
font-size: 1rem;
color: #ff0000;
vertical-align: super;
} */

.quote-author {
font-style: italic;
font-weight: 500;
font-size: 2rem;
margin-top: 10px;
}

.button-container {
margin-top: 10px;
display: flex;
justify-content: space-between;
}

button {
border: none;
cursor: pointer;
font-size: 1.2rem;
height: 2.5rem;
border-radius: 10px;
background-color: #99ff66;
color: black;
outline: none;
padding: 0.5rem 1.8rem;
box-shadow: 0 0.3rem rgba(121, 121, 121, 0.65);
}

button:hover {
filter: brightness(115%);
}

button:active {
transform: translate(0, 0.3rem);
box-shadow: 0 0.1rem rgba(255, 255, 255, 0.65);
}

.twitter-button:hover {
color: #38a1f3;
}

.fa-twitter {
font-size: 1.25rem;
}

/* Loader */
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-right: 16px solid blueviolet;
border-bottom: 16px solid gold;
border-left: 16px solid #00ff00;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

/* Hide div class*/
.hidediv {
display: none;
}

/* Media query size: Tablet or smaller */

@media screen and (max-width: 1000px) {
.quote-container {
margin: auto 10px;
}

.quote-text {
font-size: 2.5rem;
}
}

0 comments on commit 749427a

Please sign in to comment.