-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (108 loc) · 2.2 KB
/
style.css
File metadata and controls
123 lines (108 loc) · 2.2 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
121
122
123
/* ye css ko reset kar deta hai jo ki by default kuchh aati hai us chij ko */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
font-family: 'Comic Sans MS', cursive, sans-serif;
background-color: #111;
color: white;
text-align: center;
}
/* yaha container ko styling ki hai */
.container {
border: 2px solid white;
padding: 2.5rem;
margin: 2rem auto;
width: 90%;
max-width: 500px;
border-radius: 20px;
}
/* avatar ke liye thodi styling */
.avatar {
width: 100px;
height: 100px;
background-image: url(https://i0.wp.com/www.techquintal.com/wp-content/uploads/2022/01/GitHub-Alternatives.jpg?fit=1024%2C576&ssl=1);
background-position: center;
background-size: cover;
border-radius: 50%;
margin: 1.5rem auto;
}
/* botton ko styling */
.button {
background-color: darkgreen;
color: white;
padding: 0.5rem 1rem;
border: none;
margin-top: 0.8rem;
border-radius: 5px;
cursor: pointer;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}
/* jo input box hai usko styling kiya hu */
#searchInput {
padding: 0.5rem;
font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
margin-top: 1rem;
border-radius: 5px;
border: none;
width: 80%;
max-width: 300px;
}
/* Repositories Section */
.repos {
text-align: left;
margin-top: 2rem;
}
.repos h3 {
color: pink;
font-size: clamp(1.1rem, 1vw + 0.6rem, 1.4rem);
}
/* Repo List Items */
#repoList li a {
color: #4391f7;
font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
text-decoration: none;
font-weight: bold;
}
/* Language Tags */
.lang {
text-transform: uppercase;
margin-left: 8px;
font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
color: #666;
}
.lang.javascript::before {
content: "●";
color: #f1e05a;
margin-right: 4px;
}
.lang.python::before {
content: "●";
color: #3572A5;
margin-right: 4px;
}
.lang.html::before {
content: "●";
color: #e34c26;
margin-right: 4px;
}
.lang.css::before {
content: "●";
color: #563d7c;
margin-right: 4px;
}
.lang.unknown::before {
content: "●";
color: gray;
margin-right: 4px;
}
/* Followers / Following */
#followers,
#following {
color: orange;
font-size: clamp(0.95rem, 1vw + 0.4rem, 1.2rem);
}