-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (89 loc) · 1.84 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
@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Roboto:wght@100;400;700&display=swap");
body {
margin: 0;
padding: 0;
line-height: 1.5;
font-size: 16px;
font-family: "Roboto", sans-serif;
background-image: radial-gradient(#212121 10%, transparent 10%),
radial-gradient(#212121 10%, transparent 10%);
background-color: #fafafa;
background-position: 0 0, 50px 50px;
background-size: 10px 10px;
}
* {
margin: 0;
padding: 0;
outline: 0;
text-decoration: none;
box-sizing: border-box;
}
::before,
::after {
box-sizing: border-box;
}
ul {
list-style: none;
}
.container {
max-width: 1100px;
width: 100%;
margin: 0 auto;
padding: 100px 0;
}
.container .list {
display: flex;
flex-wrap: wrap;
gap: 50px;
}
.container .list .item {
width: 300px;
background: #fafafa;
border: 0.5px solid black;
border-radius: 5px;
padding: 10px;
}
.container .list .item .checked {
background-color: black;
}
.container .list .item label {
font-weight: 700;
font-size: 18px;
}
.container .list .item p {
font-weight: 100;
font-size: 16px;
line-height: 25px;
margin-top: 10px;
}
.container .search-bar-container {
display: flex;
flex-direction: row;
gap: 10px;
margin-bottom: 30px;
}
.container .search-bar-container .form-input {
border: 3px solid #ffe975;
border-radius: 5px;
width: 70%;
height: 30px;
transition: all 0.3s ease;
}
.container .search-bar-container .form-input:focus{
border-color: #84fab0;
}
.container .search-bar-container .form-button {
background-color: #209cff;
color: #fafafa;
border-radius: 5px;
border: none;
width: 20%;
cursor: pointer;
transition: all 0.3s ease;
}
.container .search-bar-container .form-button:hover{
background-color: #50a4e8;
}
.container .search-bar-container .form-button:hover{
background-color: #209cff;
}