RSHVR commited on
Commit
03f9824
·
verified ·
1 Parent(s): df27838

Create styles.css

Browse files
Files changed (1) hide show
  1. styles.css +46 -0
styles.css ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Header styling */
2
+ .header-container {
3
+ background: var(--header-gradient);
4
+ border-radius: var(--radius);
5
+ padding: 2rem;
6
+ margin-bottom: 2rem;
7
+ box-shadow: var(--shadow);
8
+ color: white;
9
+ display: flex;
10
+ align-items: center;
11
+ justify-content: center;
12
+ gap: 20px;
13
+ }
14
+
15
+ .header-container img {
16
+ filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
17
+ transition: var(--transition);
18
+ }
19
+
20
+ .header-container img:hover {
21
+ transform: scale(1.05) rotate(5deg);
22
+ }
23
+
24
+ .header-container h1 {
25
+ font-size: 2.5rem;
26
+ font-weight: 700;
27
+ margin-bottom: 0.5rem;
28
+ background: linear-gradient(45deg, #fff, #f0f0ff);
29
+ -webkit-background-clip: text;
30
+ background-clip: text;
31
+ color: transparent;
32
+ display: inline-block;
33
+ }
34
+
35
+ .header-container a {
36
+ color: white;
37
+ text-decoration: none;
38
+ font-weight: 600;
39
+ border-bottom: 2px solid rgba(255, 255, 255, 0.5);
40
+ transition: var(--transition);
41
+ padding-bottom: 2px;
42
+ }
43
+
44
+ .header-container a:hover {
45
+ border-color: white;
46
+ }