Skip to content

Commit 485d0e5

Browse files
authored
Update style.css
1 parent 618f50e commit 485d0e5

File tree

1 file changed

+39
-80
lines changed

1 file changed

+39
-80
lines changed

style.css

Lines changed: 39 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,55 @@
11
body {
2-
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3-
background-color: #121212;
4-
color: #fff;
5-
margin: 0;
6-
padding: 0;
7-
display: flex;
8-
flex-direction: column;
9-
align-items: center;
2+
font-family: 'Segoe UI', sans-serif;
3+
margin: 0;
4+
padding: 0;
5+
background: #f4f4f9;
6+
display: flex;
7+
justify-content: center;
8+
align-items: center;
9+
height: 100vh;
1010
}
1111

12-
#auth-container {
13-
margin-top: 50px;
12+
#loginScreen, #appScreen {
13+
text-align: center;
14+
background: #fff;
15+
padding: 2rem;
16+
border-radius: 12px;
17+
box-shadow: 0 0 15px rgba(0,0,0,0.1);
1418
}
1519

1620
button {
17-
background-color: #2ea44f;
18-
border: none;
19-
padding: 10px 20px;
20-
margin: 5px;
21-
border-radius: 5px;
22-
color: #fff;
23-
cursor: pointer;
24-
font-size: 1rem;
25-
transition: 0.3s;
21+
padding: 0.6rem 1.2rem;
22+
margin-top: 1rem;
23+
border: none;
24+
border-radius: 6px;
25+
background: #24292e;
26+
color: #fff;
27+
cursor: pointer;
28+
transition: background 0.3s;
2629
}
2730

2831
button:hover {
29-
background-color: #2c974b;
32+
background: #444c56;
3033
}
3134

32-
#profile {
33-
margin-top: 30px;
34-
text-align: center;
35+
input {
36+
padding: 0.5rem;
37+
width: 200px;
38+
margin-right: 0.5rem;
39+
border: 1px solid #ccc;
40+
border-radius: 6px;
3541
}
3642

37-
#profile img {
38-
width: 120px;
39-
height: 120px;
40-
border-radius: 50%;
41-
margin-bottom: 10px;
42-
transition: transform 0.3s;
43+
ul {
44+
list-style: none;
45+
padding: 0;
46+
margin-top: 1rem;
47+
text-align: left;
4348
}
4449

45-
#profile img:hover {
46-
transform: scale(1.1);
47-
}
48-
49-
#search-container {
50-
margin-top: 20px;
51-
display: flex;
52-
gap: 10px;
53-
}
54-
55-
#search-container input {
56-
padding: 10px;
57-
border-radius: 5px;
58-
border: none;
59-
width: 200px;
60-
}
61-
62-
#repos {
63-
margin-top: 30px;
64-
display: flex;
65-
flex-wrap: wrap;
66-
gap: 15px;
67-
justify-content: center;
68-
width: 90%;
69-
}
70-
71-
.repo-card {
72-
background-color: #1e1e1e;
73-
padding: 15px;
74-
border-radius: 10px;
75-
width: 250px;
76-
transition: transform 0.3s;
77-
}
78-
79-
.repo-card:hover {
80-
transform: scale(1.05);
81-
}
82-
83-
.repo-card h3 {
84-
margin: 0 0 10px 0;
85-
font-size: 1.1rem;
86-
}
87-
88-
.repo-card p {
89-
font-size: 0.9rem;
90-
color: #aaa;
91-
}
92-
93-
#error {
94-
color: #f44336;
95-
margin-top: 20px;
50+
li {
51+
margin-bottom: 1rem;
52+
padding: 0.5rem;
53+
background: #f0f0f5;
54+
border-radius: 6px;
9655
}

0 commit comments

Comments
 (0)