-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproduct.css
More file actions
109 lines (98 loc) · 1.88 KB
/
product.css
File metadata and controls
109 lines (98 loc) · 1.88 KB
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
* {
font-family: Gilroy, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
font-size: 15px;
}
#container {
display: grid;
/* grid-template-rows:500px 500px 500px; */
grid-template-columns: 1fr 2fr 1fr;
width: 85%;
/* height: 600px; */
box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
position: fixed;
top: 0;
right: 0;
left: 200px;
background-color: white;
display: none;
z-index: 10;
margin-top: 80px;
border-radius: 20px;
}
#container > div {
padding: 10px;
font-size: 30px;
}
#Features > div > p {
margin-bottom: 100px;
}
#Products {
background-image: linear-gradient(rgba(83, 94, 95, 0.192));
background-color: rgba(231, 237, 246);
border-top-left-radius: 20px;
}
#Products > h4 {
font-weight: bold;
font-size: 28px;
}
/* #Features{
background-image: linear-gradient(rgba(61, 104, 104, 0.438), rgba(158, 206, 211, 0.192));
} */
body a {
text-decoration: none;
font-weight: bold;
color: black;
}
body a:hover {
color: #006bff;
}
#Products > p {
font-size: 20px;
}
#Features > div > p {
color: #666666;
font-size: 15px;
}
.Elements {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
line-height: 1.2;
}
.Elements div img {
height: 30px;
width: 30px;
margin: -20px 0px 0px 0px;
padding: auto;
}
.Elements h4:hover {
color: #006bff;
}
.Elements {
color: #666666;
}
.SAF a {
color: #006bff;
font-size: 20px;
}
#Solution {
/* background-image: linear-gradient(rgba(83, 94, 95, 0.192), rgba(234, 241, 241, 0.438)); */
border-top-right-radius: 20px;
margin-left: 5%;
}
.Solutions {
display: flex;
flex-direction: row;
padding-bottom: 50px;
}
#Solution > div > p {
font-size: medium;
color: #666666;
}
.Integration {
text-align: left;
}