forked from devsecopsmaturitymodel/DevSecOps-MaturityModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteams.component.css
More file actions
43 lines (41 loc) · 828 Bytes
/
teams.component.css
File metadata and controls
43 lines (41 loc) · 828 Bytes
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
h2 {
color: #000000;
text-align: center;
font-weight: 800;
font-size: 2em;
margin: 1em 1em;
}
h3 {
color: #000000;
text-align: center;
font-weight: 500;
font-size: 1.2em;
font-style: italic;
margin: 1em 1em;
}
.team-list {
width: 70%;
overflow-x: auto;
white-space: nowrap;
padding: 20px;
margin: 0 auto;
}
.team-list ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex; /* Use flex layout */
}
.team-list ul li {
flex: 0 0 150px; /* Set a fixed width */
height: 100px;
background-color: #66bb6a;
border-radius: 10px;
margin-right: 20px;
display: flex; /* Use flex layout */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
font-size: 16px;
font-weight: bold;
}