paragon-analytics commited on
Commit
c10e2f9
1 Parent(s): cb61bb9

Create new file

Browse files
Files changed (1) hide show
  1. style.css +57 -0
style.css ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .kpi{
2
+ text-align: center;
3
+ border-style: solid;
4
+ border-width: 1px;
5
+ border-radius: 5px;
6
+ border-color: inherit;
7
+ }
8
+
9
+ .kpi:hover {
10
+ transform: scale(1.1);
11
+ }
12
+
13
+ .central_text{
14
+ text-align: center;
15
+ top: 50%;
16
+ }
17
+
18
+ .clause{
19
+ text-align: center;
20
+ border-style: solid;
21
+ border-width: 1px;
22
+ border-radius: 5px;
23
+ border-color: #1B7735;
24
+ box-shadow: 0px 5px #1B7735;
25
+ color: white;
26
+ margin-left: 10%;
27
+ margin-right: 10%;
28
+ padding-top: 2%;
29
+ padding-bottom: 2%;
30
+ background-color: #3C9E58;
31
+ z-index: 5;
32
+ display: block;
33
+ position: relative;
34
+ }
35
+
36
+ .clause:hover {
37
+ transform: scale(1.1);
38
+ }
39
+
40
+ .clause_text{
41
+ font-weight: bold;
42
+ }
43
+
44
+ .clause_meta{
45
+ text-align: center;
46
+ border-style: solid;
47
+ border-width: 1px;
48
+ border-radius: 5px;
49
+ border-color: #0c0c0e;
50
+ margin-left: 10%;
51
+ margin-right: 10%;
52
+ padding-top: 2%;
53
+ padding-bottom: 2%;
54
+ z-index: 3;
55
+ display: block;
56
+ position: relative;
57
+ }