-
Notifications
You must be signed in to change notification settings - Fork 26
/
Stylesheet.css
106 lines (86 loc) · 1.85 KB
/
Stylesheet.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
img{
float: left;
max-width: 50%;
max-height: auto;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
/* background-color: #9caeb4; */
}
.nav-start{
z-index: 1000;
}
.team{
z-index: -1;
position: relative;
width: 100%;
/* height: 0vh; */
/* background: radial-gradient(#0f9fcf);*/
/* background: radial-gradient(#e4e8f7, #4e5986); */
background: radial-gradient(#EEF5FF,#73a8ec);
display: flex ;
align-items: center;
justify-content: center;
flex-direction: column;
}
.team-content{
width: 50%;
max-width: 1350px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit,minmax(150px,auto));
align-items: center;
gap: 2rem;
text-align: center;
margin-top: 4rem;
}
.team-content img{
width: 100%;
height: auto;
border-radius: 15px;
margin-bottom: 15px;
}
.center h1{
color:black;
font-size: 2rem;
text-align: center;
}
.box{
padding: 16px;
/*background: #03437a;*/
/* background:linear-gradient(#176B87,#164863);*/
/* background:radial-gradient(#176B87,#2091b7 );*/
background:linear-gradient(#596FB7, #313d65);
border-radius: 15px;
transition: all .38s ease;
}
.box h3{
font-size: 23px;
font-weight: 600;
color: hsl(180, 27%, 94%);
margin-bottom: 8px;
}
.box h5{
font-size: 15px;
font-weight: 600;
color: #b7b4bb;
margin-bottom: 15px;
letter-spacing: 2px;
}
.icons i{
display: inline-block;
color: #fff;
font-size: 20px;
margin: 0 8px;
transition: all .38s ease;
}
.icons i:hover{
transform: scale(1.2);
}
.box:hover{
transform: translateY(-10px);
cursor: pointer;
}