-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
78 lines (68 loc) · 981 Bytes
/
index.css
File metadata and controls
78 lines (68 loc) · 981 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
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
body{
background-color: darksalmon;
}
ul{
list-style: none;
}
.ul-title{
font-size: 25px;
background-color: white;
border: 2px solid darkred;
}
.sort
ul
li
button{
font-size: 20px;
width: 200px;
}
#list{
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit,350px);
grid-gap: 25px;
justify-content: center;
}
#list
li{
background-color: white;
border: 2px solid black;
max-width: 300px;
padding: 5px;
display: block;
}
#list
li
button{
display: block;
float: right;
background-color:red;
border: 2px solid brown;
font-variant: small-caps;
font-size: 1.5rem;
position: relative;
bottom: 0;
}
#list
li
span{
background-color: darksalmon;
border-radius: 2rem;
margin: 2px;
}
#list
li
h2{
text-align: center;
color: darkred;
}
#list
li
p{
font-style: italic;
}
#default{
position: fixed;
font-size: 2.5rem;
border-radius: 2rem;
}