Skip to content

init #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 53 commits into
base: master
Choose a base branch
from
Open

init #16

Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
aea0fac
Topics related on CSS and CSS colors
Dathasai1234 Jul 2, 2022
de6f980
Types of Boxes Explained
Dathasai1234 Jul 3, 2022
0ea3390
Positioning (absolute and relative)
Dathasai1234 Jul 3, 2022
14557fd
Pseudo elements
Dathasai1234 Jul 4, 2022
91299a5
Section 3 initial commit
Dathasai1234 Jul 4, 2022
168ff35
Floats Layout
Dathasai1234 Jul 4, 2022
216668d
Clearing Floats
Dathasai1234 Jul 4, 2022
532e149
box-sizing - border-box
Dathasai1234 Jul 4, 2022
8a43f15
FlexBox introduction
Dathasai1234 Jul 4, 2022
8120332
FLEXBOX part1
Dathasai1234 Jul 4, 2022
dc4f006
init
Dathasai1234 Jul 4, 2022
0a57877
FLEXBOX part2
Dathasai1234 Jul 4, 2022
7d57958
inits
Dathasai1234 Jul 4, 2022
1412cdb
Grid Introduction
Dathasai1234 Jul 4, 2022
edfe3b0
GRID part-1
Dathasai1234 Jul 5, 2022
7977aca
GRID part 2
Dathasai1234 Jul 5, 2022
03bee73
GRID explained part 3
Dathasai1234 Jul 5, 2022
ddfa243
init
Dathasai1234 Jul 5, 2022
43f2032
FLEXBOX and CSS GRID completed
Dathasai1234 Jul 5, 2022
e450d8a
init
Dathasai1234 Jul 5, 2022
14b36de
Fonts completed
Dathasai1234 Jul 7, 2022
4602567
colors
Dathasai1234 Jul 7, 2022
e732f58
icons
Dathasai1234 Jul 7, 2022
3bca5bb
box-shadow
Dathasai1234 Jul 7, 2022
d255646
visual hierarchy
Dathasai1234 Jul 7, 2022
28068c7
Accordion component
Dathasai1234 Jul 8, 2022
cfa8128
Accordian in action (Script)
Dathasai1234 Jul 8, 2022
72798fd
Carousel Component
Dathasai1234 Jul 9, 2022
8c67db5
Table component
Dathasai1234 Jul 9, 2022
8e36907
Pagination component
Dathasai1234 Jul 9, 2022
5dcb787
init
Dathasai1234 Jul 9, 2022
cea21b8
Hero Section
Dathasai1234 Jul 11, 2022
a9f052a
Page layout
Dathasai1234 Jul 12, 2022
1180b84
inits
Dathasai1234 Jul 12, 2022
eb5a6c1
rem unit explained
Dathasai1234 Jul 12, 2022
4300aa2
logical html script
Dathasai1234 Jul 12, 2022
08a4997
hero base created
Dathasai1234 Jul 12, 2022
3c9db3c
transition CSS feature on hero btns
Dathasai1234 Jul 12, 2022
f1acd4c
helper class for margin right
Dathasai1234 Jul 12, 2022
23edbf5
hero section
Dathasai1234 Jul 12, 2022
07e89b7
header
Dathasai1234 Jul 12, 2022
c261b03
nav bar
Dathasai1234 Jul 12, 2022
85e4187
1) general.css file created,
Dathasai1234 Jul 13, 2022
8936179
Featured section
Dathasai1234 Jul 13, 2022
a3281ef
Meals section
Dathasai1234 Jul 13, 2022
df01efe
Testimonials and gallery section
Dathasai1234 Jul 13, 2022
8aa9db4
pricing part 01
Dathasai1234 Jul 14, 2022
17e3f30
CTA part 1
Dathasai1234 Jul 14, 2022
1b1dbf0
CTA completed
Dathasai1234 Jul 14, 2022
5261cd9
Footer
Dathasai1234 Jul 14, 2022
05d5ab0
media-queries
Dathasai1234 Jul 15, 2022
8700fc6
smooth scrolling
Dathasai1234 Jul 15, 2022
3726194
IntersectionObserver Sticky Navigation
Dathasai1234 Jul 15, 2022
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
Prev Previous commit
Next Next commit
Grid Introduction
  • Loading branch information
Dathasai1234 committed Jul 4, 2022
commit 1412cdb8183dafef6cf0550a692c1e522488f7aa
11 changes: 10 additions & 1 deletion starter/04-CSS-Layouts/css-grid.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,22 @@
/* STARTER */
font-family: sans-serif;
background-color: #ddd;
font-size: 40px;
font-size: 30px;
margin: 40px;

/* CSS GRID */
display: grid;
grid-template-columns: 200px 200px 100px 100px;
grid-template-rows: 300px 200px;

/* Gap */
column-gap: 30px;
row-gap: 60px;
}

.container--2 {
display: none;

/* STARTER */
font-family: sans-serif;
background-color: black;
Expand Down