-
Notifications
You must be signed in to change notification settings - Fork 38
/
styles.css
129 lines (112 loc) · 2.32 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
125
126
.team_member {
width:100%;
position:relative;
overflow:hidden;
height:250px;
}
.info {
height:100%;
}
.info img {
width:100%;
transition: all .4s ease-out .1s;
-moz-transition: all .4s ease-out .1s;
-webkit-transition: all .4s ease-out .1s;
}
.info h5 {
padding: 10px 10px 0 0;
margin: 0 0 10px 3px;
line-height: 1em;
opacity: 1;
transition: all .2s ease-out .1s;
-moz-transition: all .2s ease-out .1s;
-webkit-transition: all .2s ease-out .1s;
font-size: 1.125em;
}
.info h6 {
padding:0 10px 0 0;
font-size:12px;
margin:0 0 0 3px;
line-height:1em;
text-transform:uppercase;
color:#999;
opacity:1;
transition: all .2s ease-out .1s;
-moz-transition: all .2s ease-out .1s;
-webkit-transition: all .2s ease-out .1s;
}
.info_reveal {
height:100%;
transition: all .3s ease-in 0s;
-moz-transition: all .3s ease-in 0s;
-webkit-transition: all .23s ease-in 0s;
position:absolute;
width:100%;
left:0;
top:-100%;
background: rgba(19,148,119,0.9);
}
.info_reveal h6 {
padding: 20px 8px 5px 8px;
line-height: 1.1em;
margin-bottom: 20px;
color: #fff;
font-size: 1em;
}
.info_reveal p {
padding:0 8px;
font-size:15px;
line-height: 1.2em;
color: #073a2e;
font-weight:400;
}
.info_reveal a {
color: #073a2e;
word-break: break-word;
text-decoration:none;
}
.info_reveal a:hover {
color: #073a2e;
}
.responsive_grid {
display:block;
margin:0;
padding:0;
list-style:none;
}
.responsive_grid li {
cursor:pointer;
width: 16.66667%;
padding: 0 10px 10px;
display:block;
height:auto;
float:left;
margin-bottom:10px;
}
/*
.responsive_grid li:hover .info_reveal,
.responsive_grid li:focus .info_reveal{
left: 0;
top:0;
transition: all .3s ease-out .1s;
-moz-transition: all .3s ease-out .1s;
-webkit-transition: all .3s ease-out .1s;
}
.responsive_grid li:hover .info img,
.responsive_grid li:focus .info img {
width:210%;
margin-left:-50%;
transition: all .4s ease-in 0s;
-moz-transition: all .4s ease-in 0s;
-webkit-transition: all .4s ease-in 0s;
}
.responsive_grid li:hover .info h5,
.responsive_grid li:focus .info h5,
.responsive_grid li:hover .info h6,
.responsive_grid li:focus .info h6 {
opacity: 0;
transition: opacity .2s linear 0s;
-moz-transition: opacity .2s linear 0s;
-webkit-transition: opacity .2s linear 0s;
}
*/