-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
42 lines (39 loc) · 1.12 KB
/
style.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
body {
background-color: #000;
color: #fff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
overflow: hidden;
}
#employees-container {
display: flex;
flex-direction: column;
align-items: center;
overflow-y: scroll;
height: calc(100% - 50px);
width: 100%;
padding: 20px;
box-sizing: border-box;
text-align: center;
}
.employee {
background-color: #333;
color: #fff;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
width: 80%;
max-width: 600px;
box-sizing: border-box;
}
.employee img {
width: 100%;
max-width: 200px;
border-radius: 50%;
margin-bottom: 10px;
}