-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (36 loc) · 905 Bytes
/
style.css
File metadata and controls
42 lines (36 loc) · 905 Bytes
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
.search__user-input {
border-color: transparent;
border-bottom: 1px solid;
}
.search__user-input:active {
border-color: transparent;
border-bottom: 1px solid #1c87c9;
}
.search__repo-input {
border-color: transparent;
border-bottom: 1px solid;
}
.search__repo-input:active {
border-color: transparent;
border-bottom: 1px solid #1c87c9;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid darkgray;
width: 80px;
height: 80px;
animation: spin 2s linear infinite;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.search-result__issue {
border-radius: 8px;
background: #f0f0f0; /* Цвет фона */
border: 1px solid black; /* Параметры рамки */
padding: 15px; /* Поля вокруг текста */
margin-bottom: 10px; /* Отступ снизу */
}