forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 741 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (44 loc) · 741 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
body {
font-family: cursive;
text-align: center;
}
ul {
box-sizing: border-box;
width: 100%;
list-style: none;
padding: 1%;
overflow: hidden;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
li {
box-sizing: border-box;
float: left;
width: 48%;
height: 500px;
border: 1px solid rgb(187, 175, 175);
margin: 1%;
box-shadow: 10px 10px 10px #aaaaaa;
border-radius: 3%;
background-color: powderblue;
}
img {
box-shadow: 10px 10px 10px #949090;
width: 180px;
}
li:hover {
transform: scale(1.05);
transition: 0.3s;
}
h3 {
padding: 2%;
color: #e45641;
box-shadow: 10px 10px 10px #aaaaaa;
}
@media only screen and (min-width: 1000px) {
li {
width: 31.3%;
height: 500px;
}
}