-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
164 lines (136 loc) · 2.78 KB
/
style.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
body {
font-family: system-ui;
background: #121212;
/* Dark background color */
color: #fff;
/* Light text color */
}
.top-header {
color: #fff;
text-align: center;
/* Light text color */
}
#search {
display: block;
margin: 0 auto;
width: 300px;
padding: 10px;
font-size: 16px;
background: #222;
/* Darker input background */
color: #fff;
/* Light text color */
border: 1px solid #444;
/* Darker input border */
border: none;
border-radius: 5px;
}
button {
padding: 10px 20px;
font-size: 16px;
background: #f06d06;
/* Orange button background */
color: #fff;
/* Light text color */
border: none;
border-radius: 5px;
}
#resultsContainer {
margin-top: 30px;
margin-bottom: 200px;
}
code{
color:#f06d06;
font-size: 16px;
}
.result-card h4{
font-size: 17px;
}
.result-card {
border: 1px solid #444;
background-color: #333;
padding: 20px;
margin-left: 30px;
margin-right: 30px;
margin-bottom: 20px;
border-radius: 10px;
}
.result-card h2 {
margin: 0;
color: #f06d06;
text-align: center;
/* Orange heading color */
}
.result-card h3 {
margin: 0;
display: inline-block;
padding-left: 3px;
padding-right: 3px;
border-radius: 3px;
/* Orange heading color */
text-align: left;
font-size: 13px;
background-color: #f06d06;
}
.result-card p {
margin: 0;
text-align: left;
color: #fff;
/* Light text color */
}
.footer {
position: fixed;
display: block;
margin: 0 auto;
bottom: 0;
left: 0;
width: 100%;
background-color: #333;
/* Change to your desired background color */
color: #fff;
/* Change to your desired text color */
padding: 3px;
text-align: center;
}
/* Style for the name */
.name {
font-size: 24px;
font-weight: bold;
}
/* Style for the about text */
.about {
font-size: 16px;
}
.myname {
color: #f06d06;
}
/* Style for social icons */
.social-icons {
margin-top: 10px;
}
.social-icons a {
text-decoration: none;
margin: 0 10px;
color: #fff;
/* Change to your desired icon color */
font-size: 20px;
}
/* Add hover effect to social icons if desired */
.social-icons a:hover {
color: #00bcd4;
/* Change to your desired hover color */
}
/* Example styles for the result card */
.result-card {
border: 1px solid #ccc;
padding: 10px;
margin: 10px;
}
@media only screen and (min-width: 992px) {
.result-card {
width: 75%;
display: block;
margin: 0 auto;
margin-bottom: 10px;
}
}