-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
208 lines (174 loc) · 3.66 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to bottom, #ffffff, #b3e5fc); /* Degradê do branco para azul claro */
color: #333;
margin: 0;
padding: 0;
transition: background 0.5s, color 0.5s;
}
body.dark-mode {
background: linear-gradient(to bottom, #000000, #0d47a1); /* Degradê do preto para azul bem escuro */
color: #e0e0e0;
}
.resume {
width: 80%;
max-width: 900px;
margin: 20px auto;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
transition: background-color 0.5s, box-shadow 0.5s;
}
body.dark-mode .resume {
background-color: #1e1e1e;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
margin: 0;
font-size: 2.5em;
color: #003366;
transition: color 0.5s;
}
body.dark-mode header h1 {
color: #82b1ff;
}
header p {
margin: 5px 0;
color: #555;
transition: color 0.5s;
}
body.dark-mode header p {
color: #bbb;
}
header span {
font-size: 0.8em;
color: #666;
}
a {
color: #003366;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #0059b3;
}
body.dark-mode a {
color: #82b1ff;
}
body.dark-mode a:hover {
color: #bbdefb;
}
section {
margin-bottom: 20px;
}
section h2 {
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
margin-bottom: 10px;
font-size: 1.5em;
color: #003366;
transition: border-color 0.5s, color 0.5s;
}
body.dark-mode section h2 {
border-color: #555;
color: #82b1ff;
}
.project {
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
background-color: #f8f9fa;
transition: background-color 0.3s;
}
.project:hover {
background-color: #e9ecef;
}
body.dark-mode .project {
background-color: #333;
}
body.dark-mode .project:hover {
background-color: #2a2a2a;
}
.project h3 {
margin: 0;
font-size: 1.2em;
color: #003366;
transition: color 0.5s;
}
body.dark-mode .project h3 {
color: #82b1ff;
}
.about-description,
.project-description,
.skills li {
color: #444;
transition: color 0.5s, letter-spacing 0.3s;
}
body.dark-mode .about-description,
body.dark-mode .project-description,
body.dark-mode .skills li {
color: #ccc;
}
.about-description:hover,
.project-description:hover,
.skills li:hover {
letter-spacing: 1px;
}
.skills ul {
list-style-type: disc;
padding-left: 20px;
}
.theme-toggle {
text-align: center;
margin: 20px 0;
}
#toggleButton {
padding: 10px 20px;
font-size: 1em;
background-color: #003366;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
#toggleButton:hover {
background-color: #0059b3;
}
body.dark-mode #toggleButton {
background-color: #82b1ff;
color: #121212;
}
body.dark-mode #toggleButton:hover {
background-color: #bbdefb;
color: #121212;
}
.superteam-member {
text-align: center;
margin-top: 30px;
}
.superteam-member a {
display: inline-block;
padding: 15px 30px;
font-size: 1.2em;
font-weight: bold;
text-transform: uppercase;
color: #003366;
background-color: rgba(0, 0, 0, 0.0);
border: 3px solid;
border-image: linear-gradient(45deg, #003366, #0059b3, #82b1ff, #bbdefb) 1;
border-radius: 10px;
text-decoration: none;
position: relative;
overflow: hidden;
transition: color 0.5s, border-image 0.5s;
}
.superteam-member a:hover {
color: #0059b3;
border-image: linear-gradient(45deg, #bbdefb, #82b1ff, #0059b3, #003366) 1;
}