-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
86 lines (80 loc) · 1.76 KB
/
about.css
File metadata and controls
86 lines (80 loc) · 1.76 KB
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
div.a {
font-family: 'Trebuchet MS', 'Garamond', sans-serif;
margin: 0;
padding: 0;
background-color: #3D3D3D;
color: white;
font-size: 140%;
margin: 70px 160px 100px 160px;
line-height: 1.2;
}
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: #3D3D3D;
}
ul {
list-style-type: circle;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: pink;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: white;
background-color: transparent;
text-decoration: underline;
}
div.title {
color: #A1C8CE;
font-size: 300%
}
#aboutimg {
width: 100%;
}
.example {
position: relative;
padding: 0;
margin: 0 auto;
float: center;
max-width: 70%;
display: block;
cursor: pointer;
overflow: hidden;
}
.content {
opacity: 0;
font-size: 40px;
position: absolute;
top: 0;
margin-left: auto;
color: #eeeeee;
background-color: rgba(204, 0, 204, 0.5);
width: 100%;
height: 100%;
-webkit-transition: all 400ms ease-out;
-moz-transition: all 400ms ease-out;
-o-transition: all 400ms ease-out;
-ms-transition: all 400ms ease-out;
transition: all 400ms ease-out;
text-align: center;
}
.example .content:hover {
opacity: 1;
}
.example .content .text {
height: 0;
opacity: 1;
transition-delay: 0s;
transition-duration: 0.4s;
}
.example .content:hover .text {
opacity: 1;
transform: translateY(50px);
-webkit-transform: translateY(50px);
}