Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 654fce1

Browse files
committed
Broken link on background image of Lesson 15.
1 parent 334e8a6 commit 654fce1

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

15 - LocalStorage/oh-la-la.jpeg

200 KB
Loading

15 - LocalStorage/style.css

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
html {
22
box-sizing: border-box;
3-
background: url('http://wes.io/hx9M/oh-la-la.jpg') center no-repeat;
3+
background: url("oh-la-la.jpeg") center no-repeat;
44
background-size: cover;
55
min-height: 100vh;
66
display: flex;
77
justify-content: center;
88
align-items: center;
99
text-align: center;
10-
font-family: Futura,"Trebuchet MS",Arial,sans-serif;
10+
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
1111
}
1212

13-
*, *:before, *:after {
14-
box-sizing: inherit;
13+
*,
14+
*:before,
15+
*:after {
16+
box-sizing: inherit;
1517
}
1618

1719
svg {
18-
fill:white;
19-
background: rgba(0,0,0,0.1);
20+
fill: white;
21+
background: rgba(0, 0, 0, 0.1);
2022
padding: 20px;
2123
border-radius: 50%;
2224
width: 200px;
@@ -26,8 +28,8 @@ svg {
2628
.wrapper {
2729
padding: 20px;
2830
max-width: 350px;
29-
background: rgba(255,255,255,0.95);
30-
box-shadow: 0 0 0 10px rgba(0,0,0,0.1);
31+
background: rgba(255, 255, 255, 0.95);
32+
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
3133
}
3234

3335
h2 {
@@ -44,7 +46,7 @@ h2 {
4446
}
4547

4648
.plates li {
47-
border-bottom: 1px solid rgba(0,0,0,0.2);
49+
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
4850
padding: 10px 0;
4951
font-weight: 100;
5052
display: flex;
@@ -60,12 +62,12 @@ h2 {
6062
}
6163

6264
.plates input + label:before {
63-
content: '⬜️';
65+
content: "⬜️";
6466
margin-right: 10px;
6567
}
6668

6769
.plates input:checked + label:before {
68-
content: '🌮';
70+
content: "🌮";
6971
}
7072

7173
.add-items {
@@ -75,5 +77,5 @@ h2 {
7577
.add-items input {
7678
padding: 10px;
7779
outline: 0;
78-
border: 1px solid rgba(0,0,0,0.1);
80+
border: 1px solid rgba(0, 0, 0, 0.1);
7981
}

0 commit comments

Comments
 (0)