Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a4e7d03
first commit of preprocessing-II proj
djzaragoza Apr 4, 2019
76e2d7c
importing less files
djzaragoza Apr 4, 2019
3861d02
added bus logo
djzaragoza Apr 4, 2019
c3773a7
more changes
djzaragoza Apr 4, 2019
58c5a16
another change
djzaragoza Apr 5, 2019
1d3d043
created mixins and button
djzaragoza Apr 5, 2019
4bfd2a9
another change
djzaragoza Apr 5, 2019
06c0a75
another change
djzaragoza Apr 5, 2019
b913de4
adding escaping for mobile viewport
djzaragoza Apr 5, 2019
0288cac
added mobile media query
djzaragoza Apr 5, 2019
2f02181
modified header, nav and media queries
djzaragoza Apr 5, 2019
e627832
re-modifying media query stylings from variable.less to home-page.les…
djzaragoza Apr 5, 2019
464ceb2
modified media queries to make the bottom 3 paragraphs .destination t…
djzaragoza Apr 5, 2019
f0b5c46
made some minor adj in my home-page.less file nesting media queries
djzaragoza Apr 5, 2019
52e8f08
fixed mobile media queries for mid content images to fit nicely
djzaragoza Apr 5, 2019
e56dc77
cleaned up a few styling items and nesting
djzaragoza Apr 5, 2019
b347a91
attempted to fix the 3 buttons at the bottom
djzaragoza Apr 6, 2019
dd0fdcb
added less and compiler
djzaragoza Apr 24, 2020
c8970ac
added less-watch-compiler
djzaragoza Apr 24, 2020
1cb85fd
changes
djzaragoza Apr 24, 2020
df35d65
debugging
djzaragoza Apr 24, 2020
70129c3
finished MVP for fun!
djzaragoza Apr 24, 2020
cb8cab5
adding dark mode toggle feature
djzaragoza Apr 24, 2020
f0a0764
adding dark mode feature
djzaragoza Apr 25, 2020
9881264
finished styling header
djzaragoza Apr 25, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
373 changes: 372 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,372 @@
/* LESS needs to be processed */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}

body {
line-height: 1;
}

ol,
ul {
list-style: none;
}

blockquote,
q {
quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

* {
box-sizing: border-box;
}

html {
font-size: 62.5%;
}

html,
body {
font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
font-family: 'Indie Flower', cursive;
}

h1 {
font-size: 4rem;
}

h2 {
font-size: 3.6rem;
padding-bottom: 8px;
}

h4 {
font-size: 2.5rem;
padding-bottom: 10px;
}

p {
line-height: 1.5;
font-size: 1.6rem;
padding-bottom: 10px;
}

img {
max-width: 100%;
height: auto;
}

.container {
max-width: 800px;
width: 100%;
margin: 0 auto;
}

nav {
margin-left: 62px;
text-decoration: none;
text-decoration-color: black;
justify-content: center;
}

nav a {
margin-left: 30px;
font-size: 2rem;
text-decoration: none;
color: teal;

}

nav .first-anchor {
margin-left: 0;
}

.btn {
border-radius: 15px;
color: white;
background-color: teal;
text-align: center;
padding: 1rem;
font-size: 1.6rem;
margin-right: 20px;
}

.footer {
width: 100%;
border-top: 2px dashed silver;
background: #FFEBCD;
}

.footer p {
text-align: center;
color: #212529;
font-size: 1.6rem;
padding: 20px;
}

header {
width: 100%;
margin: 20px 0;
padding: 20px;
display: flex;
justify-content: space-evenly;
align-items: center;
text-align: center;
}

header h2 {
font-size: 3rem;
}

@media (max-width: 500px) {
header {
flex-direction: column;
align-items: center;
margin-left: 20px 0;
margin-bottom: 20px;
}
}

.img {
margin: center;
border-width: 25px 30px 30px 20px;
padding-right: 20px 0;
border-top: 2px dashed black;
}

.welcome {
margin-top: 20px;
border-bottom: 2px dashed black;
}

.welcome h2 {
margin-bottom: 20px;
}

.home .content-section {
margin: 30px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

@media (max-width: 500px) {
.home .content-section {
flex-direction: column;
justify-content: center;
width: 100%;
}
}

.home .content-section .text-content {
width: 48%;
padding-right: 1%;
}

@media (max-width: 500px) {
.home .content-section .text-content {
flex-direction: column-reverse;
justify-content: center;
width: 100%;
}
}

.home .content-section .img-content {
width: 48%;
padding-left: 1%;
}

@media (max-width: 500px) {
.home .content-section .img-content {
width: 70%;
align-items: center;
margin-left: 60px;
}
}

.home .content-section .img-content img {
border-radius: 10px;
}

.home .inverse-content {
padding-bottom: 30px;
border-bottom: 2px dashed #C0C0C0;
}

@media (max-width: 500px) {
.home .inverse-content {
width: 100%;
flex-direction: column-reverse;
}
}

.home .inverse-content .text-content {
padding-left: 1%;
padding-right: 0;
}

.home .inverse-content .img-content {
padding-right: 1%;
padding-left: 0;
}

.home .content-destination {
width: 75%;
margin: 0 auto 30px;
}

.home .content-destination img {
border-radius: 10px;
}

.home .content-pick {
padding-top: 30px;
border-top: 2px dashed #C0C0C0;
display: flex;
justify-content: space-between;
}

@media (max-width: 500px) {
.home .content-pick {
flex-direction: column;
}

.home .content-pick .destination {
width: 100%;
margin-bottom: 30px;
}

.home .content-pick .destination .btn {
border-radius: 15px;
background-color: teal;
text-align: center;
padding: 1rem;
font-size: 1.6rem;
margin-right: 20px;
border: 2px solid black;
color: white;
}
}
Binary file added design-files/design_file_desktop_wc.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading