-
Notifications
You must be signed in to change notification settings - Fork 0
/
listElements.css
71 lines (57 loc) · 1.28 KB
/
listElements.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
:root {
--textColor: #640c8d;
--borderSearch: #FB5FE6;
--borderHoverSearch: #fbde5f;
--borderListElements: #b225e0;
--colorListElements: #00fefe;
--colorListElementsHover: #00fe4c;
--gradientBg1: #85d4ff;
--gradientBg2: #b6abfd;
--gradientBg3: #e683fc;
}
input {
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.223);
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: 700;
font-size: 1rem;
text-align: center;
width: 200px;
height: 40px;
border-radius: 13px;
border: 3px solid var(--borderSearch);
}
input:focus {
outline: none;
color: var(--textColor)
}
::placeholder{
color: var(--textColor)
}
li {
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.223);
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: 700;
font-size: 1rem;
text-align: center;
text-decoration: none;
border-radius: 15px;
border: 3px solid var(--borderListElements);
background: linear-gradient(
280deg,
var(--gradientBg1) 0%,
var(--gradientBg2) 44%,
var(--gradientBg3) 100%
);
padding: 15px;
width: 150px;
margin: 5px;
cursor: pointer;
}
li:hover {
transition: background-color 500ms linear;
background: var(--colorListElementsHover);
}
a {
text-decoration: none;
color: var(--textColor);
}