-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSalesPagePython.css
More file actions
71 lines (67 loc) · 1.19 KB
/
SalesPagePython.css
File metadata and controls
71 lines (67 loc) · 1.19 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
/* .icon-whats {
position: fixed;
width: 9%;
bottom: 30px;
right: 15px;
z-index: 100;
}
.icon-whats:hover {
background-color: #F3CF17;
border: solid 1px #000;
}
@media (min-width:768px){
.icon-whats {
position: fixed;
width: 6%;
bottom: 30px;
right: 30px;
z-index: 100;
}
}
@media (min-width: 1000px){
.icon-whats {
position: fixed;
width: 3%;
bottom: 30px;
right: 30px;
z-index: 100;
}
} */
.container-page-python {
justify-items: center;
text-align: center;
height: 100vh;
align-items: center;
background: rgba(0, 0, 0, 0.3);
padding: 40px;
border-radius: 20px;
max-width: 450px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
background-color: #fff;
margin: auto;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
font-weight: bold;
}
p {
font-size: 1.1rem;
margin-bottom: 30px;
line-height: 1.6;
}
a.button {
display: inline-block;
padding: 15px 25px;
background: #6fcac9;
color: #2c2a40;
font-weight: bold;
border-radius: 10px;
text-decoration: none;
transition: 0.3s ease;
}
a.button:hover {
background: #5ab5b4;
transform: translateY(-3px);
}