From 974317427108204c0b4d2b30f78890831e238f8e Mon Sep 17 00:00:00 2001 From: meryem sener Date: Fri, 20 Sep 2019 21:42:51 +0200 Subject: [PATCH 1/3] 1. week/Meryem/tic-tac-toe --- .../0-blank-page-setup/index.html | 5 +- .../1-head-and-header/index.html | 22 ++++ .../1-head-and-header/style.css | 16 +++ .../2-rules-of-the-game/index.html | 109 ++++++++++++++++++ .../2-rules-of-the-game/style.css | 10 ++ .../3-unplayable-board/index.html | 48 ++++++++ .../3-unplayable-board/style.css | 12 ++ .../4-playable-board/index.html | 35 ++++++ .../week-1-project/4-playable-board/style.css | 8 ++ .../week-1-project/5-up-to-you/index.html | 0 homework/week-1-project/5-up-to-you/style.css | 0 11 files changed, 263 insertions(+), 2 deletions(-) delete mode 100644 homework/week-1-project/5-up-to-you/index.html delete mode 100644 homework/week-1-project/5-up-to-you/style.css diff --git a/homework/week-1-project/0-blank-page-setup/index.html b/homework/week-1-project/0-blank-page-setup/index.html index 7ab86ff..e1d720d 100644 --- a/homework/week-1-project/0-blank-page-setup/index.html +++ b/homework/week-1-project/0-blank-page-setup/index.html @@ -5,11 +5,12 @@ - + + My Tic-Tac-Toe Game - +

TIC-TAC-TOE GAME

diff --git a/homework/week-1-project/1-head-and-header/index.html b/homework/week-1-project/1-head-and-header/index.html index e69de29..1b32a78 100644 --- a/homework/week-1-project/1-head-and-header/index.html +++ b/homework/week-1-project/1-head-and-header/index.html @@ -0,0 +1,22 @@ + + + + + + + + + My Tic-Tac-Toe Game + + + +

TIC-TAC-TOE GAME

+

What is the tic-tac-toe game? +The tic-tac-toe game is + paper-and-pencil game for two players, X and O, who take turns marking + the spaces in a 3×3 grid. +

+ + + + \ No newline at end of file diff --git a/homework/week-1-project/1-head-and-header/style.css b/homework/week-1-project/1-head-and-header/style.css index e69de29..d72fb69 100644 --- a/homework/week-1-project/1-head-and-header/style.css +++ b/homework/week-1-project/1-head-and-header/style.css @@ -0,0 +1,16 @@ +body { + font-style:halvetica; + color:#08252b; + background:#c2f0ec; + +} +h2 { + background-color:c9cf74; + text-align:center; + font-size:27px; +} +img { + width: 200px; + height:200px; + float:left; +} \ No newline at end of file diff --git a/homework/week-1-project/2-rules-of-the-game/index.html b/homework/week-1-project/2-rules-of-the-game/index.html index e69de29..e59447a 100644 --- a/homework/week-1-project/2-rules-of-the-game/index.html +++ b/homework/week-1-project/2-rules-of-the-game/index.html @@ -0,0 +1,109 @@ + + + + + + + + + My Tic-Tac-Toe Game + + + +

How you can play tic-tac-toe?

+ +

Tic-tac-toe is a fun game that you can play + any time and anywhere as long as you have + a piece of paper, a pencil, and an + opponent. Tic-tac-toe is a zero sum game, + which means that if both players are + playing their best, that neither player + will win. However, if you learn how to + play tic-tac-toe and master some simple + strategies, then you'll be able to not + only play, but to win the majority of + the time. If you want to know how to + play tic-tac-toe, then see Step 1 to + get started

+
+

Step 1

+

+ Draw the board. First, you have to + draw the board, which is made up of + 3 x 3 grid of squares. This means it + has three rows of three squares. Some + people play with a 4 x 4 grid, but + that is for more advanced players, + and we will focus on the 3 x 3 grid + here

+ funny tic tac toe +
+

Step 2

+

Have the first player go first. + Though traditionally, the first player + goes with "X", you can allow the first + player to decide whether he wants to go + with "X"s or "O"s. These symbols will + be placed on the table, in the attempt + to have three of them in a row. If + you're going first, then the best move + you can make is to move into the + center. This will maximize your + chances of winning, since you'll be + able to create a row of three "X"s or + "O"s in more combinations (4) this + way than if you chose a different + square.

+ funny tic tac toe + + +

Step 3

+

Have the second player go second. + After the first player goes, then the + second player should put down his symbol, + which will be different from the symbol + of the first player. The second player + + can either try to block the first player + from creating a row of three, or focus on + creating his or her own row of three. + Ideally, the player can do both.

+ funny tic tac toe +
+

Step 4

+

Keep alternating moves until one of the + players has drawn a row of three symbols or + until no one can win. The first player to + + draw three of his or her symbols in a row, + whether it is horizontal, vertical, or + diagonal, has won tic-tac-toe. However, if + both players are playing with optimal + strategy, then there's a good chance that + no one will win because you will have + blocked all of each other's opportunities + to create a row of three.

+ funny tic tac toe +
+

Step 5

+

Keep practicing. Contrary + to popular belief, tic-tac-toe isn't purely + a game of chance. There are some strategies + that can help you optimize your skills and + to become an expert tic-tac-toe player. If + you keep playing, you'll soon learn all of + the tricks to making sure you win every + time -- or, at least, you'll learn the + tricks to make sure you never lose. Its + like 0's and x's. +

+funny tic tac toe +
+ + + \ No newline at end of file diff --git a/homework/week-1-project/2-rules-of-the-game/style.css b/homework/week-1-project/2-rules-of-the-game/style.css index e69de29..a650d7a 100644 --- a/homework/week-1-project/2-rules-of-the-game/style.css +++ b/homework/week-1-project/2-rules-of-the-game/style.css @@ -0,0 +1,10 @@ +body { + margin:0px; + padding:0px; + list-style:none; +} +p { + color:#233523; + background-color:rgb(166, 233, 166); + font-family:sans-serif; +} diff --git a/homework/week-1-project/3-unplayable-board/index.html b/homework/week-1-project/3-unplayable-board/index.html index e69de29..fe78b90 100644 --- a/homework/week-1-project/3-unplayable-board/index.html +++ b/homework/week-1-project/3-unplayable-board/index.html @@ -0,0 +1,48 @@ + + + + + + + + + My Tic-Tac-Toe Game + + + +
+

Tic-tac-toe game

+

Players soon discover that the best play from both parties + leads to a draw. Hence, tic-tac-toe is most often played by + young children, who often have not yet discovered the + optimal strategy.

+ +

Because of the simplicity of tic-tac-toe, + it is often used as a pedagogical tool for teaching + the concepts of good sportsmanship and the branch of + artificial intelligence that deals with the searching + of game trees. It is straightforward to write a + computer program to play tic-tac-toe perfectly + or to enumerate the 765 essentially different + positions (the state space complexity) or the + 26,830 possible games up to rotations and + reflections (the game tree complexity) on + this space.

+ +

The game can be generalized to an m,n,k-game in + which two players alternate placing stones of their + own color on an m×n board, with the goal of getting + k of their own color in a row. Tic-tac-toe is the + (3,3,3)-game.[2] Harary's generalized tic-tac-toe + is an even broader generalization of tic-tac-toe. + It can also be generalized as a nd game. + Tic-tac-toe is the game where n equals 3 + and d equals 2.[3] If played properly, + the game will end in a draw, making + tic-tac-toe a futile game.[4]

+ + +
+ + + \ No newline at end of file diff --git a/homework/week-1-project/3-unplayable-board/style.css b/homework/week-1-project/3-unplayable-board/style.css index e69de29..b066cf7 100644 --- a/homework/week-1-project/3-unplayable-board/style.css +++ b/homework/week-1-project/3-unplayable-board/style.css @@ -0,0 +1,12 @@ +body { + font-style:cursive; + +} +h3 { + background-color:blue; + text-align:center; +} +#halowen { + width: 200px; + height:200% +} \ No newline at end of file diff --git a/homework/week-1-project/4-playable-board/index.html b/homework/week-1-project/4-playable-board/index.html index e69de29..9281d01 100644 --- a/homework/week-1-project/4-playable-board/index.html +++ b/homework/week-1-project/4-playable-board/index.html @@ -0,0 +1,35 @@ + + + + + + + + + My Tic-Tac-Toe Game + + + +

TIC-TAC-TOE BOARD

+

Example board

+ + + + + + + + + + + + + + + + + +
oxo
x0x
oxo
+ + + \ No newline at end of file diff --git a/homework/week-1-project/4-playable-board/style.css b/homework/week-1-project/4-playable-board/style.css index e69de29..a0c6351 100644 --- a/homework/week-1-project/4-playable-board/style.css +++ b/homework/week-1-project/4-playable-board/style.css @@ -0,0 +1,8 @@ +h3 { + Color:purple; +} +td { + border:6px solid #333; + border-color:pink; + +} diff --git a/homework/week-1-project/5-up-to-you/index.html b/homework/week-1-project/5-up-to-you/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/homework/week-1-project/5-up-to-you/style.css b/homework/week-1-project/5-up-to-you/style.css deleted file mode 100644 index e69de29..0000000 From 4a92fab2e53d7a262d0d19fa47950998467544bd Mon Sep 17 00:00:00 2001 From: meryem sener Date: Fri, 27 Sep 2019 11:51:40 +0200 Subject: [PATCH 2/3] week-2/MeryemSener --- homework/week-2-project/Wedding-Organisation | 1 + 1 file changed, 1 insertion(+) create mode 160000 homework/week-2-project/Wedding-Organisation diff --git a/homework/week-2-project/Wedding-Organisation b/homework/week-2-project/Wedding-Organisation new file mode 160000 index 0000000..a6d9f73 --- /dev/null +++ b/homework/week-2-project/Wedding-Organisation @@ -0,0 +1 @@ +Subproject commit a6d9f733b42715ce53bb45d3d08849ff68df04fe From ae6ac8446fd6e91b3f978ede7261cb1d99933a46 Mon Sep 17 00:00:00 2001 From: meryem sener Date: Fri, 27 Sep 2019 12:18:13 +0200 Subject: [PATCH 3/3] again trying --- Wedding-Organisation/1-page-setup/index.html | 17 ++ Wedding-Organisation/1-page-setup/style.css | 9 + .../2-head-and-header/index.html | 98 +++++++++ .../2-head-and-header/style.css | 71 +++++++ .../3-sections-and-nav/index.html | 39 ++++ .../3-sections-and-nav/style.css | 0 Wedding-Organisation/3-sections/style.css | 91 ++++++++ Wedding-Organisation/4-footer/index.html | 30 +++ Wedding-Organisation/4-footer/style.css | 23 ++ .../wedding-organisation-original/LICENSE.md | 2 + .../wedding-organisation-original/README.md | 1 + .../wedding-organisation-original/index.html | 140 +++++++++++++ .../wedding-organisation-original/style.css | 196 ++++++++++++++++++ homework/week-2-project/Wedding-Organisation | 1 - 14 files changed, 717 insertions(+), 1 deletion(-) create mode 100644 Wedding-Organisation/1-page-setup/index.html create mode 100644 Wedding-Organisation/1-page-setup/style.css create mode 100644 Wedding-Organisation/2-head-and-header/index.html create mode 100644 Wedding-Organisation/2-head-and-header/style.css create mode 100644 Wedding-Organisation/3-sections-and-nav/index.html create mode 100644 Wedding-Organisation/3-sections-and-nav/style.css create mode 100644 Wedding-Organisation/3-sections/style.css create mode 100644 Wedding-Organisation/4-footer/index.html create mode 100644 Wedding-Organisation/4-footer/style.css create mode 100644 Wedding-Organisation/wedding-organisation-original/LICENSE.md create mode 100644 Wedding-Organisation/wedding-organisation-original/README.md create mode 100644 Wedding-Organisation/wedding-organisation-original/index.html create mode 100644 Wedding-Organisation/wedding-organisation-original/style.css delete mode 160000 homework/week-2-project/Wedding-Organisation diff --git a/Wedding-Organisation/1-page-setup/index.html b/Wedding-Organisation/1-page-setup/index.html new file mode 100644 index 0000000..3d0542c --- /dev/null +++ b/Wedding-Organisation/1-page-setup/index.html @@ -0,0 +1,17 @@ + + + + + + + + + AYDIN WEDDING ORGANISATION + + + + + +

Aydin Wedding Organisation

+ + \ No newline at end of file diff --git a/Wedding-Organisation/1-page-setup/style.css b/Wedding-Organisation/1-page-setup/style.css new file mode 100644 index 0000000..92565d4 --- /dev/null +++ b/Wedding-Organisation/1-page-setup/style.css @@ -0,0 +1,9 @@ +* { + margin:0; + padding:0; + border: 0; +} + +bady { + font-family: 'Dosis', cursive; +} \ No newline at end of file diff --git a/Wedding-Organisation/2-head-and-header/index.html b/Wedding-Organisation/2-head-and-header/index.html new file mode 100644 index 0000000..1ed7426 --- /dev/null +++ b/Wedding-Organisation/2-head-and-header/index.html @@ -0,0 +1,98 @@ + + + + + + + + + AYDIN WEDDING ORGANISATION + + + + + +
+
+
+ +
+
+ +
+ 0482728905 +
+ +
+ maria.magdelena04@gmail.com +
+
+
+
+
+
+
+
+
+
+ + + +
+ +

Welcome Our Dream World

+
+
+

A handy step-by-step timeline for planning your wedding... + Planning your wedding, whether you have two years or three months to do it, can be stressful. + If like us, you make endless lists in your head (or on a scrap of paper) only to forget them + minutes later, then our Ultimate Wedding Checklist is for you. A step-by-step wedding planning + timeline of all the main things you need to do to pull off a fabulous wedding day. Wedding + planning can be daunting; doing research, managing a budget, and working out what to do when. + So we created a full downloadable list of all the essential things you will need to do, from + finding a wedding venue to going dress shopping, and planning a honeymoon to organising the + RSVP list. +

+
+
+ +

Showers & Parties

+ +

The wedding is just one in a series of events. We're here to help plan the perfect bridal + shower, bachelorette party, and rehearsal dinner.

+
+
+

Wedding Dresses

+ +

Finding the one—the perfect wedding dress—is where it all starts! Everything you need + to know about wedding dress shopping is at your fingertips + right here

+ + +

+ +
+
+ + +
+
+ + +
\ No newline at end of file diff --git a/Wedding-Organisation/2-head-and-header/style.css b/Wedding-Organisation/2-head-and-header/style.css new file mode 100644 index 0000000..46eccf2 --- /dev/null +++ b/Wedding-Organisation/2-head-and-header/style.css @@ -0,0 +1,71 @@ +#mainHeader { + width: 100%; + height:1300px; + position: static; + background-image: url(../Pictures/bethanyspencer-wedding-01.jpg); + background-size: 100% auto; + background-repeat: no-repeat; + background-position: center; + } + + #ulTopLeft { + list-style-type: none; + display: inline-block; + float: left; + text-decoration: none; + + } + + div#headerContainer { + width: 1346px; + height: 750px; + margin: auto; + position: relative; + } + + div#headerTop { + width: 1346px; + height: 50px; + position: relative; + } + + ul#ulTopLeft li { + display:inline-block; + line-height: 50px; + border-right: 1px solid white; + padding: 0 10px; + } + + ul#ulTopLeft li:first-child { + padding-left: 0; + } + + ul#ulTopLeft li:last-child { + border-right: 0px; + } + + ul#ulTopLeft li a { + text-decoration: none; + color: White; + + } + + ul#ulTopLeft li a:hover { + color:#973838; + } + + div#topRight { + height: 50px; + position: relative; + float: right; + } + + div.topContactText { + height:50px; + line-height: 50px; + float:right; + margin-left: 20px; + color:white; + margin-right:20px; + } + \ No newline at end of file diff --git a/Wedding-Organisation/3-sections-and-nav/index.html b/Wedding-Organisation/3-sections-and-nav/index.html new file mode 100644 index 0000000..6a09900 --- /dev/null +++ b/Wedding-Organisation/3-sections-and-nav/index.html @@ -0,0 +1,39 @@ + + + + + + + + + AYDIN WEDDING ORGANISATION + + + + + + +
+ +
+

Who We Are

+

First thing’s first—OMG, you’re engaged! Can you tell we’re excited? But, we also know better + than anyone how overwhelming wedding planning can be and we’re here to help you every step of the way. + We know we’ve been around for 85 years, but this is not your grandmother’s Brides. Everyday, we meet with wedding planners, photographers, and real brides to + maintain an authentic and celebratory approach to weddings. We are active participants in New York + Bridal Fashion Week, where we report live on trends before they break on the internet. And we stay + on top of every celebrity engagement to bring you the latest ideas that you can borrow for your wedding. +
+
+ We’re committed to bringing you an inclusive look at the world of weddings, with every type of couple, + and every type of celebration. Whether you’re only just thinking about getting engaged (or hinting at + it and looking for the perfect ring), in the throws of wedding planning, or already navigating newlywed + life, Brides is here to inspire, guide and entertain you during this exciting, and trying, time. + Looking for the most gorgeous wedding dress? Exactly how to word a wedding invitation? Or wondering + how to propose to your bridal party? You’ve come to the right place. +
+
+ +

+ +
\ No newline at end of file diff --git a/Wedding-Organisation/3-sections-and-nav/style.css b/Wedding-Organisation/3-sections-and-nav/style.css new file mode 100644 index 0000000..e69de29 diff --git a/Wedding-Organisation/3-sections/style.css b/Wedding-Organisation/3-sections/style.css new file mode 100644 index 0000000..1cf4d94 --- /dev/null +++ b/Wedding-Organisation/3-sections/style.css @@ -0,0 +1,91 @@ +nav { + width:100%; + height: 80px; + position:relative; + background: rgba(0,0,0,0.5); + top:0; +} + +div#navContainer { + width: 1346px; + height: 80px; + position: relative; + margin: auto; +} + +div#navLogo { + font-family: 'Bungee', cursive; + color:White; + line-height: 80px; + display: inline; + float: left; + +} + +ul#ukuleKukule { + list-style: none; + display: inline-block; + float: right; +} + +ul#ukuleKukule li { + display: inline-block; + line-height:80px; +} + +ul#ukuleKukule li a { + text-decoration: none; + color: white; +} + +ul#ukuleKukule li a:hover { + color:#973838; +} + +div#headerText { + margin-top: 100px; +} + +#special { + color:whitesmoke; +} +div#first { + + background: transparent; + float:left; + width: 30%; + margin-right: 10px; + color:#ffffff; +} + +section.limitedSection { + width:1346px; + height:600px; + position: relative; + margin:auto; + margin-top: 50px; +} + +section.limitedSection h2, section.limitedSection p, section.limitedSection h3 { + text-align: center; + +} + +section.limitedSection img { + width:663px; + margin-top: 50px; + border:1px splid #973838; + padding:7px; + box-sizing: border-box; + float: left; +} + +section.limitedSection article { + width: 600px; + float: right; + margin-top: 50px; +} + +section.limitedSection article p { + margin-top: 20px; +} \ No newline at end of file diff --git a/Wedding-Organisation/4-footer/index.html b/Wedding-Organisation/4-footer/index.html new file mode 100644 index 0000000..0765bdf --- /dev/null +++ b/Wedding-Organisation/4-footer/index.html @@ -0,0 +1,30 @@ +!DOCTYPE html> + + + + + + + + AYDIN WEDDING ORGANISATION + + + + + + +
+ +
+
+

Aydin Wedding Organisation

+ + + +
+
+
+ + + + \ No newline at end of file diff --git a/Wedding-Organisation/4-footer/style.css b/Wedding-Organisation/4-footer/style.css new file mode 100644 index 0000000..52b6f08 --- /dev/null +++ b/Wedding-Organisation/4-footer/style.css @@ -0,0 +1,23 @@ +footer { + widows: 100%; + height:500px; + position: relative; + background: url(../Pictures/wedding-photography-singapore-darren-and-jade-feature-e1545615005648.jpg); + +} + +footer div#footerContainer { + width: 1200px; + position: relative; + margin:0px; +} + +footer div#footerContainer div.footerBox { + width: 400px; + position: relative; + float:left; +} + +footer div#footerContainer div.footerBox img { + width:80px; +} diff --git a/Wedding-Organisation/wedding-organisation-original/LICENSE.md b/Wedding-Organisation/wedding-organisation-original/LICENSE.md new file mode 100644 index 0000000..ab633ac --- /dev/null +++ b/Wedding-Organisation/wedding-organisation-original/LICENSE.md @@ -0,0 +1,2 @@ + +Copyright (C) 2019 meryem sener diff --git a/Wedding-Organisation/wedding-organisation-original/README.md b/Wedding-Organisation/wedding-organisation-original/README.md new file mode 100644 index 0000000..39c7268 --- /dev/null +++ b/Wedding-Organisation/wedding-organisation-original/README.md @@ -0,0 +1 @@ +Wedding-Organisation diff --git a/Wedding-Organisation/wedding-organisation-original/index.html b/Wedding-Organisation/wedding-organisation-original/index.html new file mode 100644 index 0000000..75e2d01 --- /dev/null +++ b/Wedding-Organisation/wedding-organisation-original/index.html @@ -0,0 +1,140 @@ + + + + + + + + + AYDIN WEDDING ORGANISATION + + + + + + +
+
+
+ +
+
+ +
+ 0482728905 +
+ +
+ maria.magdelena04@gmail.com +
+
+
+
+
+
+
+
+
+
+ + + +
+ +

Welcome Our Dream World

+
+
+

A handy step-by-step timeline for planning your wedding... + Planning your wedding, whether you have two years or three months to do it, can be stressful. + If like us, you make endless lists in your head (or on a scrap of paper) only to forget them + minutes later, then our Ultimate Wedding Checklist is for you. A step-by-step wedding planning + timeline of all the main things you need to do to pull off a fabulous wedding day. Wedding + planning can be daunting; doing research, managing a budget, and working out what to do when. + So we created a full downloadable list of all the essential things you will need to do, from + finding a wedding venue to going dress shopping, and planning a honeymoon to organising the + RSVP list. +

+
+
+ +

Showers & Parties

+ +

The wedding is just one in a series of events. We're here to help plan the perfect bridal + shower, bachelorette party, and rehearsal dinner.

+
+
+

Wedding Dresses

+ +

Finding the one—the perfect wedding dress—is where it all starts! Everything you need + to know about wedding dress shopping is at your fingertips + right here

+ + +

+ +
+
+ + +
+
+ + +
+ +
+ +
+

Who We Are

+

First thing’s first—OMG, you’re engaged! Can you tell we’re excited? But, we also know better + than anyone how overwhelming wedding planning can be and we’re here to help you every step of the way. + We know we’ve been around for 85 years, but this is not your grandmother’s Brides. Everyday, we meet with wedding planners, photographers, and real brides to + maintain an authentic and celebratory approach to weddings. We are active participants in New York + Bridal Fashion Week, where we report live on trends before they break on the internet. And we stay + on top of every celebrity engagement to bring you the latest ideas that you can borrow for your wedding. +
+
+ We’re committed to bringing you an inclusive look at the world of weddings, with every type of couple, + and every type of celebration. Whether you’re only just thinking about getting engaged (or hinting at + it and looking for the perfect ring), in the throws of wedding planning, or already navigating newlywed + life, Brides is here to inspire, guide and entertain you during this exciting, and trying, time. + Looking for the most gorgeous wedding dress? Exactly how to word a wedding invitation? Or wondering + how to propose to your bridal party? You’ve come to the right place. +
+
+ +

+ +
+ + + + + + diff --git a/Wedding-Organisation/wedding-organisation-original/style.css b/Wedding-Organisation/wedding-organisation-original/style.css new file mode 100644 index 0000000..b452c07 --- /dev/null +++ b/Wedding-Organisation/wedding-organisation-original/style.css @@ -0,0 +1,196 @@ +* { + margin:0; + padding:0; + border: 0; +} + +bady { + font-family: 'Dosis', cursive; +} + #mainHeader { + width: 100%; + height:1300px; + position: static; + background-image: url(../Pictures/bethanyspencer-wedding-01.jpg); + background-size: 100% auto; + background-repeat: no-repeat; + background-position: center; +} + +#ulTopLeft { + list-style-type: none; + display: inline-block; + float: left; + text-decoration: none; + +} + +div#headerContainer { + width: 1346px; + height: 750px; + margin: auto; + position: relative; +} + +div#headerTop { + width: 1346px; + height: 50px; + position: relative; +} + +ul#ulTopLeft li { + display:inline-block; + line-height: 50px; + border-right: 1px solid white; + padding: 0 10px; +} + +ul#ulTopLeft li:first-child { + padding-left: 0; +} + +ul#ulTopLeft li:last-child { + border-right: 0px; +} + +ul#ulTopLeft li a { + text-decoration: none; + color: White; + +} + +ul#ulTopLeft li a:hover { + color:#973838; +} + +div#topRight { + height: 50px; + position: relative; + float: right; +} + +div.topContactText { + height:50px; + line-height: 50px; + float:right; + margin-left: 20px; + color:white; + margin-right:20px; +} + +/* ***Nav Baslangici*** */ +nav { + width:100%; + height: 80px; + position:relative; + background: rgba(0,0,0,0.5); + top:0; +} + +div#navContainer { + width: 1346px; + height: 80px; + position: relative; + margin: auto; +} + +div#navLogo { + font-family: 'Bungee', cursive; + color:White; + line-height: 80px; + display: inline; + float: left; + +} + +ul#ukuleKukule { + list-style: none; + display: inline-block; + float: right; +} + +ul#ukuleKukule li { + display: inline-block; + line-height:80px; +} + +ul#ukuleKukule li a { + text-decoration: none; + color: white; +} + +ul#ukuleKukule li a:hover { + color:#973838; +} + +div#headerText { + margin-top: 100px; +} + +#special { + color:whitesmoke; +} +div#first { + + background: transparent; + float:left; + width: 30%; + margin-right: 10px; + color:#ffffff; +} + +section.limitedSection { + width:1346px; + height:600px; + position: relative; + margin:auto; + margin-top: 50px; +} + +section.limitedSection h2, section.limitedSection p, section.limitedSection h3 { + text-align: center; + +} + +section.limitedSection img { + width:663px; + margin-top: 50px; + border:1px splid #973838; + padding:7px; + box-sizing: border-box; + float: left; +} + +section.limitedSection article { + width: 600px; + float: right; + margin-top: 50px; +} + +section.limitedSection article p { + margin-top: 20px; +} + +footer { + widows: 100%; + height:500px; + position: relative; + background: url(../Pictures/wedding-photography-singapore-darren-and-jade-feature-e1545615005648.jpg); + +} + +footer div#footerContainer { + width: 1200px; + position: relative; + margin:0px; +} + +footer div#footerContainer div.footerBox { + width: 400px; + position: relative; + float:left; +} + +footer div#footerContainer div.footerBox img { + width:80px; +} diff --git a/homework/week-2-project/Wedding-Organisation b/homework/week-2-project/Wedding-Organisation deleted file mode 160000 index a6d9f73..0000000 --- a/homework/week-2-project/Wedding-Organisation +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a6d9f733b42715ce53bb45d3d08849ff68df04fe