-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (49 loc) · 972 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (49 loc) · 972 Bytes
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
body {
font-family: 'Poppins', sans-serif;
text-align: center;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: white;
margin: 0;
padding: 0;
}
.hero {
padding: 80px 20px;
background: url('smart-home.jpg') no-repeat center center/cover;
}
h1 {
font-size: 36px;
}
.download-btn {
display: inline-block;
padding: 15px 30px;
background: #ff4b5c;
color: white;
font-size: 18px;
text-decoration: none;
border-radius: 10px;
transition: 0.3s ease-in-out;
}
.download-btn:hover {
background: #e63946;
}
.qr {
margin-top: 20px;
}
.qr img {
width: 150px;
}
.features {
padding: 50px 20px;
}
.feature-box {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.feature {
width: 250px;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
}