-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal.css
35 lines (32 loc) · 881 Bytes
/
final.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* ==========================================
FINAL.CSS
These are the final styles for the project.
Course: CSS3 in 30 Days
Author: Brad Hussey
Website: codecollege.ca
========================================== */
img.final__image {
position: relative;
display: inline-block;
font-family: Arial, sans serif;
font-size: 0.7em;
text-align: center;
text-transform: uppercase;
}
img.final__image:after {
display: inherit;
position: absolute;
top: 0;
left: 0;
width: 100%;
min-width: 200px;
padding: 10px 20px 10px 45px;
border: 1px dashed #888888;
background-color: #f0f0f0;
background-image: url(noimage.png);
background-size: 10%;
background-repeat: no-repeat;
background-position: 15px 10px;
z-index: 1;
content: "" attr(alt) " Not Found";
}