-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
109 lines (98 loc) · 1.83 KB
/
index.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* reset */
html {
box-sizing: border-box;
font-size: 16px;
scroll-behavior: smooth;
}
*,
*::after,
*::before {
box-sizing: inherit;
}
body {
margin: 0;
overflow-x: hidden;
}
/* title */
h1 {
text-align: center;
}
/* svg section */
.container-svg {
width: 99 vw;
display: flex;
justify-content: center;
}
.wrapper-svg {
width: 70vw;
display: flex;
justify-content: center;
padding-bottom: 0.75rem;
}
.container-svg img {
width: 100%;
}
/* info section */
.gpr-default-info,
.gpr-scenarios-info,
.gpr-scenarios-a2a-info,
.gpr-scenarios-b2b-info,
.gpr-scenarios-erp-info,
.gpr-scenarios-cloud-services-info,
.gpr-scenarios-spa-info,
.gpr-scenarios-mobile-app-info,
.gpr-scenarios-event-driven-info,
.gpr-governance-info,
.gpr-pic-info,
.gpr-flow-info,
.gpr-core-info,
.gpr-format-pma-info,
.gpr-monitoring-info,
.gpr-operation-info,
.gpr-deploy-info,
.gpr-integrations-info,
.gpr-extensions-info,
.gpr-built-in-app-info,
.gpr-embedded-app-info,
.gpr-role-based-user-info,
.gpr-multitenancy-info,
.gpr-audit-trails-info {
width: 100%;
margin: 0;
padding: 1rem 4rem 0;
display: flex;
justify-content: center;
flex-direction: column;
box-sizing: border-box;
opacity: 0;
transition: opacity 150ms ease-in-out;
position: absolute;
top: 0;
}
.gpr-default-info {
opacity: 1;
}
.gpr-wrapper {
width: 100%;
height: 1rem;
position: relative;
box-sizing: border-box;
margin-top: -100px;
}
.info-title {
height: 3rem;
}
.box {
box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086),
0 100px 80px rgba(0, 0, 0, 0.12);
min-height: 200px;
width: 50vw;
margin: 100px auto;
background: white;
border-radius: 5px;
}
body {
background: #eef2f7;
}