-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (73 loc) · 1.36 KB
/
styles.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
font-family: 'Roboto', sans-serif;
background-color: #121212;
color: #E0E0E0;
margin: 0;
padding: 20px;
text-align: center; /* Centering everything */
}
header {
margin-bottom: 30px;
}
a {
color:purple;
}
h1 {
color: #9C27B0; /* Purple text */
font-size: 2.5em;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav a {
color: #E0E0E0;
text-decoration: none;
font-weight: bold;
}
nav a.active {
border-bottom: 2px solid #9C27B0; /* Active tab indicator */
}
main {
max-width: 800px;
margin: 0 auto;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
article {
margin-bottom: 20px;
padding: 15px;
border: 1px solid #333;
border-radius: 5px;
background-color: #1E1E1E;
}
footer {
text-align: center;
margin-top: 50px;
font-size: 0.8em;
color: #B0BEC5;
}
#rainCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* Send the canvas behind all other elements */
}
header, main, footer {
position: relative; /* Ensure these elements stay above the canvas */
z-index: 1; /* Higher z-index than the canvas */
}
.gmail-icon {
width: 40px; /* Adjust width as needed */
height: auto; /* Maintain aspect ratio */
}