Skip to content

Commit 0933477

Browse files
Update style.css
1 parent 0ec7218 commit 0933477

1 file changed

Lines changed: 10 additions & 13 deletions

File tree

style.css

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@
55
--nav: #9D86CD;
66
--card: #8c98e3;
77
--accent: #98BFFF;
8-
--text-dark: #282828;
98
--text-light: #ffffff;
9+
--text-dark: #282828;
1010
}
1111

1212
[data-theme="light"] {
1313
--bg: #f0f0f0;
1414
--nav: #98BFFF;
1515
--card: #ffffff;
16-
--text-dark: #282828;
1716
--text-light: #282828;
1817
}
1918

@@ -25,7 +24,7 @@
2524
body {
2625
background-color: var(--bg);
2726
color: var(--text-light);
28-
transition: 0.4s;
27+
transition: background 0.5s ease;
2928
}
3029

3130
.navbar {
@@ -34,40 +33,38 @@ body {
3433
display: flex; justify-content: space-between; align-items: center;
3534
}
3635

37-
.nav-links {
38-
display: flex; list-style: none; gap: 15px; align-items: center;
39-
}
36+
.navbar ul { display: flex; list-style: none; gap: 15px; align-items: center; }
4037

41-
.nav-links a {
42-
text-decoration: none; color: var(--text-dark); font-size: 14px;
43-
}
38+
.navbar a { text-decoration: none; color: var(--text-dark); font-size: 13px; }
4439

45-
.comunidade-link {
40+
.btn-comunidade {
4641
background: var(--accent); padding: 5px 10px; border-radius: 5px;
4742
}
4843

4944
.theme-switch {
5045
background: var(--text-dark); color: white; border: 2px solid var(--accent);
51-
padding: 8px 12px; border-radius: 8px; cursor: pointer;
46+
padding: 7px 12px; border-radius: 8px; cursor: pointer; font-family: 'Alfa Slab One', cursive;
5247
}
5348

54-
.hero { text-align: center; padding: 50px 20px; }
49+
.hero { text-align: center; padding: 60px 20px; }
5550
.hero h1 span { color: var(--nav); }
5651

5752
.container { max-width: 900px; margin: 0 auto; padding: 20px; }
5853

5954
.card {
6055
background-color: var(--card); color: var(--text-dark);
6156
padding: 30px; border-radius: 20px; border: 5px solid var(--accent);
57+
margin-bottom: 20px;
6258
}
6359

6460
.btn-primary {
6561
background: var(--bg); color: var(--accent);
6662
padding: 12px 20px; border: none; border-radius: 10px; cursor: pointer;
63+
font-family: 'Alfa Slab One', cursive;
6764
}
6865

6966
#codigo-editor {
70-
width: 100%; height: 150px; background: #000; color: #0f0;
67+
width: 100%; height: 140px; background: #000; color: #0f0;
7168
padding: 15px; font-family: monospace; border-radius: 10px; margin-top: 15px;
7269
}
7370

0 commit comments

Comments
 (0)