-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodee.css
More file actions
58 lines (57 loc) · 856 Bytes
/
Copy pathcodee.css
File metadata and controls
58 lines (57 loc) · 856 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
#box,bg color
:root{
--background: #006600;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.background{
background-color: var(--background);
display: grid;
place-items: center;
height: 100vh;
}
.gallery{
display: flex;
flex-wrap: wrap;
gap: 15px;
max-width: 800px;
}
.card{
position: relative;
left: 0px;
width: 80px;
border-radius: 16px;
height: 360px;
overflow: hidden;
background-color: var(--background);
transition: 0.4s ease-in-out;
box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
flex: 0.25;
}
.card img {
height: 380px;
}
.card:hover{
flex: 2;
font-weight: bold;
cursor: pointer;
border-radius: 8px;
}
h1{
font-size: 50px;
}
h2{
font-size: 50px;
}
h3{
font-size: 50px;
}
h4{
font-size: 50px;
}
h5{
font-size: 50px;
}