-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.css
More file actions
171 lines (164 loc) · 2.56 KB
/
team.css
File metadata and controls
171 lines (164 loc) · 2.56 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
body{
margin:0;
padding:0;
}
*{
box-sizing: border-box;
}
.container{
max-width:1150px;
margin:auto;
position: relative;
min-height:1px;
}
.team{
min-height: 50vh;
padding:50px 10px;
background-image: url(bg.jpeg);
background-size: cover;
background-attachment: fixed;
}
.team h1{
font-size: 70px;
font-family: harrington;
font-weight: 900;
color:#000000;
margin: 5;
padding-bottom: 50px;
text-align:center;
}
.team .card{
width: 25%;
float: left;
padding:0px 15px;
}
.team .card .box {
padding: 15px;
background-color: #ffffff;
border-radius:5px;
transition: margin 1s ease,box-shadow 1s ease;
}
.team .card .box:hover{
margin-top:-15px;
box-shadow:0px 0px 40px red;
}
.team .card .box img{
width: 170px;
display: block;
margin: 10px auto;
border-radius:50%;
}
.team .card .box h4{
font-size:20px;
font-family:harrington;
margin: 20px 0px 10px;
color: #000000;
text-align: center;
font-weight: 700;
}
.team .card .box h5{
font-size:16px;
font-family:candara;
color: #000000;
text-align: center;
font-weight: 600;
margin:0px 0px 15px;
}
.team .card .box p{
font-size:14px;
font-family:candara;
color: #000000;
text-align: center;
font-weight: 400;
margin:0px 20px;
line-height: 24px;
}
button {
position: absolute;
top: 50%;
left: 50;
transform: translate(-50%,-50%);
}
html, body {
margin: 50;
padding: 50;
width: 100;
}
body {
height: 100vh;
background:: #white;
}
button {
position: absolute;
top: 110%;
left: 50%;
transform: translate(-50%,-50%)
}
button {
width: 82px;
height: 30px;
background: #FFFFFF;
text-align: center;
font-size: 13px;
border-radius: 2px;
overflow: hidden;
border: 1px solid #000000;
}
button:focus {
outline: none;
}
button:before {
content: ' ';
display: block;
position: absolute;
background: #0077b5;
width: 60px;
height: 100%;
top: 0%;
left: 0;
opacity: .5s;
filter: blur(50px);
transform: translateX(-130px) skewX(-15deg);
}
button:after {
content: ' ';
display: block;
position: absolute;
background: #DFD0D0;
width: 30px;
height: 100%;
top: 0;
left: 30;
opacity: 0;
filter: blur(30px);
transform: translate(-100px) scaleX(-15deg);
}
button:hover {
background: #DA2525;
cursor: pointer;
}
body {
margin: 0;
font-family: Helvetica;
}
.topnav {
overflow: hidden;
background-color: #000000;
}
.topnav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 13px 18px;
text-decoration: none;
font-size: 20px;
}
.topnav a:hover {
background-color: #ff0000;
color: black;
}
.topnav a.active {
background-color: #ffffff;
color: white;
}