Gregniuki commited on
Commit
68cd0c8
1 Parent(s): d04ac5a

Upload style.css

Browse files
Files changed (1) hide show
  1. static/style.css +88 -0
static/style.css ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Psychedelic Styles */
2
+ @import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
3
+
4
+ /* Reset CSS */
5
+ * {
6
+ margin: 0;
7
+ padding: 0;
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ body {
12
+ font-family: 'Kaushan Script', cursive;
13
+ background-color: #000;
14
+ color: #FFF;
15
+ overflow-x: hidden;
16
+ }
17
+
18
+ /* Gradient animation for backgrounds */
19
+ @keyframes gradient-animation {
20
+ 0% { background-position: 0% 50%; }
21
+ 50% { background-position: 100% 50%; }
22
+ 100% { background-position: 0% 50%; }
23
+ }
24
+
25
+ /* Header styles with a dynamic gradient */
26
+ header {
27
+ padding: 20px 0;
28
+ background-image: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00ab, #ff0000);
29
+ background-size: 300% 300%;
30
+ animation: gradient-animation 10s ease infinite;
31
+ color: white;
32
+ text-align: center;
33
+ }
34
+
35
+ /* Nav bar links with a glow effect */
36
+ nav a {
37
+ text-decoration: none;
38
+ color: #FFF;
39
+ background-color: #000;
40
+ padding: 10px;
41
+ border-radius: 5px;
42
+ transition: background-color 0.3s ease-in-out;
43
+ }
44
+
45
+ nav a:hover {
46
+ box-shadow: 0 0 10px #FFF, 0 0 40px #FFF, 0 0 80px #FFF;
47
+ }
48
+
49
+ /* Psychedelic button styles */
50
+ button {
51
+ background: #8518f2; /* Fallback for browsers that do not support gradients */
52
+ background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00ab);
53
+ border: none;
54
+ color: white;
55
+ padding: 10px 20px;
56
+ cursor: pointer;
57
+ border-radius: 5px;
58
+ font-family: 'Kaushan Script', cursive;
59
+ font-size: 1.1em;
60
+ transition: transform 0.2s ease;
61
+ }
62
+
63
+ button:hover {
64
+ transform: scale(1.05);
65
+ }
66
+
67
+ /* Main content with psychedelic patterns */
68
+ .main-content {
69
+ padding: 50px;
70
+ background-image: url('psychedelic-pattern.png'); /* Replace with the actual path to your psychedelic pattern image */
71
+ background-size: cover;
72
+ text-align: center;
73
+ }
74
+
75
+ /* Footer with wave-like pattern */
76
+ footer {
77
+ padding: 20px 0;
78
+ background-image: linear-gradient(45deg, #ff00ab, #002bff, #00ffd5, #48ff00, #fffb00, #ff7300, #ff0000);
79
+ background-size: 300% 300%;
80
+ animation: gradient-animation 15s ease infinite;
81
+ text-align: center;
82
+ color: white;
83
+ }
84
+
85
+ /* Media queries for responsiveness */
86
+ @media (max-width: 768px) {
87
+ /* Adjust styles for smaller screens */
88
+ }