-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcompany.css
59 lines (52 loc) · 993 Bytes
/
company.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
#body_part {
display: flex;
width: 90%;
margin: auto;
justify-content: space-around;
}
#left_side {
width: 22%;
padding: 0px 20px 0px 20px;
}
#left_side>p {
color: grey;
text-align: center;
}
.sector {
height: 100px;
overflow: auto;
margin: 10px 0px;
line-height: 26px;
}
#outer {
display: grid;
width: 72%;
grid-template-columns: repeat(4,1fr);
grid-template-rows: auto;
gap: 30px 20px;
}
#outer>div{
padding: 10px;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#outer>div>button{
padding: 10px 20px;
color: rgb(117, 179, 25);
border: 1px solid;
border-radius: 20px;
font-weight: bold;
}
#outer>div>div{
width: 90%;
border: 1px solid #fffaf7;
background-color: #fffaf7;
border-radius: 20px;
margin: auto;
}
#outer>div:nth-child(6){
background-color: #fffaf7;
}
#body_part{
padding-top: 30px;
}