-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.css
91 lines (87 loc) · 1.72 KB
/
team.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
@import url("https://fonts.googleapis.com/css?family=Baloo+Thambi+2&display=swap");
@import url("https://fonts.googleapis.com/css?family=Baloo+Thambi+2|Karla&display=swap");
@import url("https://fonts.googleapis.com/css?family=Baloo+Thambi+2|Karla|Lobster&display=swap");
@import url("https://fonts.googleapis.com/css?family=Baloo+Thambi+2|Dosis|Karla|Lobster&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Roboto", sans-serif;
overflow-x: hidden;
}
a {
text-decoration: none;
}
#Navbar {
height: 10vh;
}
#nav {
background-color: #0f4c75;
}
#Team {
display: block;
background-color: #0f4c75;
}
.team-heading {
display: flex;
justify-content: center;
color: white;
}
.team-heading h2 {
display: inline-block;
border-bottom: 2px solid gold;
}
.Team-content {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 2rem;
}
.Team-members {
background-color: rgb(238, 255, 238);
border-radius: 5%;
font-family: "Baloo Thambi 2", cursive;
}
.shadow {
box-shadow: -5px -5px 10px rgb(6, 53, 53);
}
.Image {
display: flex;
justify-content: center;
align-items: center;
}
.Image img {
height: 100x;
width: 100px;
border-radius: 100%;
transition: all 1s ease-in-out;
}
.Image img:hover {
transform: scale(1.1);
}
.role {
font-size: 0.9rem;
color: rgb(0, 48, 70);
}
.Social-Icon {
display: flex;
list-style-type: none;
justify-content: space-evenly;
}
.Social-Icon i {
color: rgb(128, 46, 60);
}
@media screen and (max-width: 900px) {
.Team-content {
grid-template-columns: repeat(3, 1fr);
}
}
@media screen and (max-width: 640px) {
.Team-content {
grid-template-columns: repeat(2, 1fr);
}
}