-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (116 loc) · 2.56 KB
/
styles.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
padding: 0px;
margin: 0px;
background-image: URL("http://subtlepatterns.com/patterns/congruent_outline.png");
}
.header-box h2 {
font-size: 5em;
color: white;
text-align: center;
padding-top: 80px;
transition: all .5s ease;
}
.header:hover {
background-color: grey;
color: black;
border-radius: 50px;
}
.header:hover h2 {
margin: 0px 0px 300px 200px;
font-size: 100px;
}
nav ul {
text-align:center;
padding: 20px 0px 0px 0px;
margin: 0px;
}
nav ul li {
display: inline-block;
border: 2px solid grey;
background-color: black;
width: 200px;
height: 100px;
text-align: center;
padding-top: 20px;
color: grey;
transition: 2s ease-out;
}
.bio:hover {
background-image: URL("http://www.licenseplatecentral.com/img/plates/sc/schools/SC-College-of-Charleston-License-Plate.jpg");
color: black
}
.family:hover {
border-radius: 100%;
background-image: URL("images/family.jpg");
height: 200px;
width: 400px;
color: red;
}
.dog:hover {
background-image: url("https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-xpa1/v/t1.0-9/1544981_10202835402587892_2045226243_n.jpg?oh=a913b466f28fd2443c4083fdbe2d4896&oe=5451AC35&__gda__=1413714154_0320e25f76adb6d1d654000d289a4c7d");
width:450px;
height:450px;
transform:rotate(720deg);
color: black
}
.matt:hover {
height: 160px;
width: 190px;
color: black;
background-image: URL("https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xpa1/v/t1.0-1/c1.12.199.199/p200x200/10471261_602229755421_1330802364277538532_n.jpg?oh=d8ae2a65cf860c9fd8e8da10a248a33d&oe=5438B5F4&__gda__=1415051064_1c51a0302f286ad7c317340d07f04dbb")
}
.Charleston:hover {
padding-top: 100px;
margin-left: 50px;
color: white;
background-image: URL("http://www.jsilkstonephotography.com/img/s5/v122/p881707464-11.jpg");
}
.img1 {
text-align: center;
margin-top: 20px;
transition: all 2s ease;
}
.img1 img {
transition: all 2s ease;
}
.img1 img:hover {
transform:scale(1.2);
}
.test-hidden {
margin: 0 auto;
overflow: hidden;
transition: height 2s ease, width 2s ease;
height: 60px;
width: 405px;
}
.test-hidden h2 {
color: white;
text-align: center;
/* border: 2px solid black; */
border-radius: 15px;
/* background-color: black; */
}
.test-hidden:hover {
height: 300px;
width: 405px;
margin: 0 auto;
}
.anothertest {
overflow: hidden;
margin: 0 auto;
width: 405px;
height: 50px;
transition: height 2s ease;
}
.anothertest h2 {
text-align: center;
}
.anothertest:active {
height: 300px;
width: 405px;
margin: 0 auto;
background-color: white;
}
footer {
width: 200px;
}