Project

General

Profile

1
table {
2
  font-size: 14px;
3
  background-color: #FFFFFF;
4
  width:100%;
5
  table-layout: fixed;
6
  overflow-wrap: break-word;
7
}
8

    
9
table th {
10
  width: 25%;
11
}
12

    
13
table th, table td {
14
  border: 1px solid #DEDEDE;
15
  padding: 25px 40px;
16
  vertical-align: top;
17
  text-align: start;
18
}
19

    
20
table th.important {
21
  background-color: #eff6e6;
22
}
23

    
24
ul.portal-circle {
25
  list-style: none;
26
  padding-left: 40px;
27
  font-family: "Open Sans", sans-serif;
28
}
29

    
30
ul.portal-circle li {
31
  margin: 0 0 2px 0;
32
  position: relative;
33
}
34

    
35
ul.portal-circle li:before {
36
  content: "";
37
  border: 5px var(--portal-main-color) solid !important;
38
  border-radius: 50px;
39
  line-height: 21px;
40
  margin-left: -20px;
41
  position: absolute;
42
  top: 7px;
43
}
44

    
45
@media only screen and (max-width: 959px) {
46
  table th {
47
    width: 50%;
48
  }
49

    
50
  ul.portal-circle {
51
    padding-left: 20px;
52
  }
53
}
(1-1/3)