-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (104 loc) · 1.82 KB
/
Copy pathstyle.css
File metadata and controls
120 lines (104 loc) · 1.82 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* Global styles */
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #f9f9f9;
color: #333;
padding: 2rem;
line-height: 1.6;
}
h1, h2, h3 {
color: #5a40d6;
margin-bottom: 0.5rem;
}
p {
margin-bottom: 1rem;
}
a {
color: #5a40d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header styles */
header {
text-align: center;
margin-bottom: 3rem;
}
.about {
max-width: 750px;
margin: 3rem auto;
padding-top: 2rem;
border-top: 1px solid #ddd;
}
.about p {
margin-bottom: 1rem;
}
.about h2 {
text-align: center;
color: #444;
}
.mantra {
font-style: italic;
color: #666;
max-width: 700px;
margin: 0 auto;
}
/* Dashboard tiles */
.tiles {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
justify-content: center;
margin-top: 1rem;
}
.tile {
display: inline-block;
padding: 1rem 2rem;
border-radius: 10px;
font-weight: bold;
color: white;
font-size: 1.2rem;
text-align: center;
width: 180px;
transition: transform 0.2s ease-in-out;
}
.tile:hover {
transform: scale(1.05);
}
/* Color themes */
.pink { background-color: #f78ca2; }
.gold { background-color: #f5b942; }
.purple { background-color: #c49cde; }
.teal { background-color: #70c7b1; }
/* Button */
.button {
background-color: #5a40d6;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: bold;
display: inline-block;
margin-top: 1rem;
}
.button:hover {
background-color: #4832b8;
}
/* Footer */
footer {
margin-top: 4rem;
text-align: center;
font-size: 0.9rem;
color: #888;
}
/* Responsive */
@media (max-width: 600px) {
.tiles {
flex-direction: column;
align-items: center;
}
.tile {
width: 90%;
}
}