-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsf_effects.css
76 lines (54 loc) · 1.35 KB
/
sf_effects.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@charset "utf-8";
/*
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 4
Case Problem 2
Save your Fork Graphic Design Styles
Author: Brandon Berney
Date: Feb 21 2019
Filename: sf_effects.css
*/
/* Body Header Styles */
body {
box-shadow: rgb(51, 51, 51) 10px 0px 50px;
}
/* Navigation Tabs List Styles */
body > header nav.tabs {
background-image: url(sf_back1.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
body > header nav.tabs li {
transform: perspective(50px) rotateX(40deg);
}
body > header nav.tabs li:hover {
background-color: rgb(231, 231, 231);
}
/* Left Section Styles */
section#left nav.vertical {
border: 1px rgb(20, 167, 170);
border-style: solid;
border-radius: 25px;
}
section#left nav.vertical h1 {
border-radius: 25px 25px 0 0;
}
/* Center Article Styles */
section#center article {
background: radial-gradient(white 30%, rgb(151, 151, 151));
border: 1px rgb(151, 151, 151);
border-style: solid;
border-radius: 50px;
box-shadow: 10px 10px 20px rgb(51, 51, 51);
}
/* Blockquote Styles */
blockquote {
background-image: url(sf_speech.png);
background-repeat: no-repeat;
background-size: 100% 100%;
filter: drop-shadow(5px, 5px, 10px, rgb(51, 51, 51));
}
cite img {
border-radius: 50%;
}