-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
52 lines (46 loc) · 794 Bytes
/
index.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
* {
box-sizing: border-box;
margin:0;
padding:0;
}
body{
border: 10px solid black;
}
.container{
margin:5px;
padding:5px;
font-family: cursive;
filter: drop-shadow(2px 2px 8px plum);
min-width: 100%;
}
ul{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
grid-gap: .5rem;
margin: .5rem 0;
justify-content: space-evenly;
list-style-type: none;
}
li{
background-color: bisque;
border: 2px solid gray;
margin: 2px;
padding:1px;
}
.input-grp{
display: flex;
justify-content: flex-start;
align-items: flex-start;
}
input[type=text]{
width:130px;
transition: width 0.4s ease-in-out;
}
input[type=text]:hover{
width:200px;
background-color: powderblue;
}
.top{
display: flex;
justify-content: space-between;
}