Skip to content

Commit 0766b18

Browse files
author
Eren
committed
ninth commit
1 parent 01bf12b commit 0766b18

13 files changed

+52
-52
lines changed

1.using.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>Using CSS</title>
88
<link rel="stylesheet" href="css/style.css">
9-
<!-- <style>
9+
<style>
1010
/*
1111
selector {
1212
css-özelliği : value
@@ -19,7 +19,7 @@
1919
background: red;
2020
}
2121

22-
</style> -->
22+
</style>
2323
</head>
2424
<body>
2525
<!-- <h1 style="color: red">Başlık 1</h1> -->

10.margin.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
77
<title>CSS - Margin</title>
88
<style>
99
div.box-1 {
10-
/* top right bottom left */
11-
/* margin: 50p 20px 50px 20px; */
12-
/* top-bottom, right-left */
13-
/* margin: 50px 20px; */
14-
background: #a7a7a7;
15-
width: 50%;
10+
/* top right bottom left
11+
margin: 50p 20px 50px 20px;
12+
/* top-bottom: right-left; */
13+
margin: 50px 20px;
14+
background: #a7a7a7;
15+
width: 50%;
1616

17-
/* margin-left: auto;
18-
margin-right: auto; */
17+
margin-left: auto;
18+
margin-right: auto;
1919

2020
margin: 0 auto;
21-
/*margin-left: 50px;
21+
margin-left: 50px;
2222
margin-right: 50px;
2323
margin-top: 50px;
24-
margin-bottom: 50px; */
24+
margin-bottom: 50px;
2525
}
2626
</style>
2727
</head>

12.texts.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>CSS - Texts</title>
88
<style>
9-
/*
9+
1010
h1 {
1111
background: seashell;
1212

@@ -22,7 +22,7 @@
2222

2323
.heading3 {
2424
text-align: right;
25-
} */
25+
}
2626

2727
div {
2828
width: 400px;

13.fonts.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>CSS - Fonts</title>
88
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
99
<style>
10-
/* html {
10+
html {
1111
font-size: 10px;
1212
}
1313
h1 {
@@ -25,7 +25,7 @@
2525
}
2626
div span {
2727
font-size: 75%;
28-
} */
28+
}
2929

3030
p {
3131
font-size: 1.5rem;

15.PseudoClass.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
/*
2828
selector: pseudo_class {
2929
30-
}
31-
*/
32-
/* a {
30+
} */
31+
32+
a {
3333
font-size: 24px;
3434
}
3535
a:link {
@@ -46,9 +46,9 @@
4646
}
4747
a:active {
4848
color: blue;
49-
} */
49+
}
5050

51-
/* input {
51+
input {
5252
font-size: 1.5em;
5353
padding: 10px;
5454
border-radius: 4px;
@@ -60,7 +60,7 @@
6060
outline: 0;
6161
border: 2px solid red;
6262

63-
} */
63+
}
6464

6565
</style>
6666
</head>

16.PseudoElements.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
line-height: 1.5em;
1313
}
1414

15-
/* .para1::first-line {
15+
.para1::first-line {
1616
color:red;
1717
}
1818
.para1::first-letter {
1919
color: blue;
2020
font-size: 50px;
21-
} */
21+
}
2222

2323
.para1::after {
2424
content: "Paragraf Sonrasi";

17.Nth-Child-Selector.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
background: black;
2525
}
2626

27-
/* p:first-child {
27+
p:first-child {
2828
background: blue;
2929

3030
}
@@ -41,15 +41,15 @@
4141
p:nth-child(3) {
4242
color: blue;
4343

44-
}*/
44+
}
4545

46-
/* p:nth-child(even) {
46+
p:nth-child(even) {
4747
color: red;
4848

4949
}
5050
p:nth-child(odd) {
5151
color: blue;
52-
} */
52+
}
5353
/* an + b -> n = 0, b = 0 */
5454
</style>
5555
</head>

2.basic-selectors.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>Basic Selectors</title>
88
<style>
9-
/* Tüm H1 leri seç
9+
/* Tüm H1 leri seç */
1010
h1 {
1111
color: red;
1212
background: blue;
@@ -49,7 +49,7 @@
4949
font-size: 30px;
5050
}
5151

52-
*/
52+
5353

5454
</style>
5555
</head>

20.Position.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
left: 75px;
1717
z-index: -1;
1818
}
19-
/*
19+
2020
.outer-box {
2121
width: 200px;
2222
height: 200px;
@@ -31,9 +31,9 @@
3131
position: absolute;
3232
bottom: 10px;
3333
right: 10px;
34-
} */
34+
}
3535

36-
/* .red {
36+
.red {
3737
width: 100px;
3838
height: 100px;
3939
background-color: red;
@@ -50,18 +50,18 @@
5050
left: 5px;
5151
top: 5px;
5252
z-index: -1;
53-
} */
53+
}
5454

5555

56-
/* .fixed-topbar {
56+
.fixed-topbar {
5757
width: 50%;
5858
padding: 20px;
5959
background-color: black;
6060
color: white;
6161
text-align: center;
6262
position: fixed;
6363
bottom: 20px;
64-
} */
64+
}
6565

6666
</style>
6767
</head>

21.Float.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
.box-3 {
2323
background-color: green;
2424
}
25-
/* .image1 {
25+
.image1 {
2626
margin-right: 10px;
2727
float: left;
2828
}
2929

3030
.image2 {
3131
margin-left: 10px;
3232
float: right;
33-
} */
33+
}
3434
</style>
3535
</head>
3636
<body>

0 commit comments

Comments
 (0)