flpolprojects commited on
Commit
1d969a7
·
verified ·
1 Parent(s): 8cb686a

Rename style.css to styles.css

Browse files
Files changed (2) hide show
  1. style.css +0 -28
  2. styles.css +109 -0
style.css DELETED
@@ -1,28 +0,0 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
-
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
styles.css ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ margin: 0;
3
+ font-family: 'Arial', sans-serif;
4
+ background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
5
+ color: #fff;
6
+ overflow-x: hidden;
7
+ }
8
+
9
+ .container {
10
+ max-width: 1200px;
11
+ margin: 0 auto;
12
+ padding: 20px;
13
+ }
14
+
15
+ header {
16
+ text-align: center;
17
+ padding: 50px 0;
18
+ }
19
+
20
+ .kinetic-title {
21
+ font-size: 4rem;
22
+ font-weight: bold;
23
+ animation: pulse 2s infinite;
24
+ text-transform: uppercase;
25
+ background: -webkit-linear-gradient(#00ffcc, #ff007a);
26
+ -webkit-background-clip: text;
27
+ -webkit-text-fill-color: transparent;
28
+ }
29
+
30
+ @keyframes pulse {
31
+ 0% { transform: scale(1); }
32
+ 50% { transform: scale(1.05); }
33
+ 100% { transform: scale(1); }
34
+ }
35
+
36
+ .subtitle {
37
+ font-size: 1.5rem;
38
+ opacity: 0.8;
39
+ }
40
+
41
+ .hero {
42
+ display: flex;
43
+ align-items: center;
44
+ justify-content: space-between;
45
+ min-height: 60vh;
46
+ }
47
+
48
+ .product-image {
49
+ width: 50%;
50
+ height: 400px;
51
+ background: url('cream.png') no-repeat center/cover; /* Замените на реальное изображение */
52
+ filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.5));
53
+ transform: rotateY(20deg);
54
+ transition: transform 0.5s ease;
55
+ }
56
+
57
+ .product-image:hover {
58
+ transform: rotateY(0deg);
59
+ }
60
+
61
+ .hero-text {
62
+ width: 45%;
63
+ }
64
+
65
+ .hero-text h2 {
66
+ font-size: 2.5rem;
67
+ margin-bottom: 20px;
68
+ }
69
+
70
+ .cta-button {
71
+ padding: 15px 30px;
72
+ font-size: 1.2rem;
73
+ border: none;
74
+ background: #00ffcc;
75
+ color: #0f0c29;
76
+ border-radius: 50px;
77
+ cursor: pointer;
78
+ transition: transform 0.3s, box-shadow 0.3s;
79
+ }
80
+
81
+ .cta-button:hover {
82
+ transform: scale(1.1);
83
+ box-shadow: 0 0 20px #00ffcc;
84
+ }
85
+
86
+ .features {
87
+ display: flex;
88
+ justify-content: space-around;
89
+ padding: 50px 0;
90
+ }
91
+
92
+ .feature-card {
93
+ width: 30%;
94
+ padding: 20px;
95
+ background: rgba(255, 255, 255, 0.1);
96
+ border-radius: 15px;
97
+ text-align: center;
98
+ transition: transform 0.3s ease, background 0.3s ease;
99
+ }
100
+
101
+ .feature-card:hover {
102
+ transform: translateY(-10px);
103
+ background: rgba(0, 255, 204, 0.2);
104
+ }
105
+
106
+ .feature-card h3 {
107
+ font-size: 1.5rem;
108
+ margin-bottom: 10px;
109
+ }