-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek5.css
104 lines (84 loc) · 1.5 KB
/
week5.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body {
background-color: #DED4B9;
color: #46433A;
}
/* Controls overall text settings */
h1 {
color: #CE534D;
text-transform: uppercase;
}
h2 {
color: #46433A;
text-transform: uppercase;
}
h3, h4, h5, h6 {
color: #64B6B1;
text-align: center;
}
a {
color: #CE534D;
text-decoration: none;
}
a:hover {
font-weight: bold;
color: #64B6B1;
font-size: 20px;
}
/* ------- Header Specific Styling ------- */
header {
width: 100%;
border-bottom: 5px solid #46433A;
}
header div {
width: 85%;
margin: auto;
text-align: center;
}
nav ul {
padding: 0;
}
nav ul li {
list-style: none;
display: inline;
padding: 0 20px;
}
/* ------- ------- */
section {
border-bottom: 2px solid #46433A;
}
.about, .pictures {
width: 85%;
margin: auto;
}
.list {
display: inline-block;
padding: 0 40px;
width: 33%;
box-sizing: border-box; <!--The width and height properties (and min/max properties) includes content, padding and border, but not the margin-->
}
.pictures {
padding: 0 0 25px;
}
.picture {
display: inline-block;
width: 33%;
text-align: center;
}
img {
width: 75%;
height: auto;
border-radius: 100%;
-webkit-box-shadow: 13px 13px 63px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 13px 13px 63px 0px rgba(0,0,0,0.75);
box-shadow: 13px 13px 63px 0px rgba(0,0,0,0.75);
}
img:hover {
-moz-transform: scale(1.5);
-webkit-transform: scale(1.5);
-o-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
}
.activities ul li{
list-style: square;
}