-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (52 loc) · 1019 Bytes
/
style.css
File metadata and controls
56 lines (52 loc) · 1019 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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: arial;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.boxes {
padding: 10px;
display: grid;
gap: 1rem;
grid-template-columns: 1fr 1fr 1fr;
}
.box-1, .box-2, .box-3, .box-4, .box-5, .box-6 {
height: 260px;
width: 280px;
background-color: rgb(18 11 28);
margin: 10px;
text-align: center;
padding: 25px;
border-radius: 5px;
cursor : pointer;
}
.box-1:hover, .box-2:hover, .box-3:hover, .box-4:hover, .box-5:hover, .box-6:hover{
background-color: rgb(17, 5, 5);
transition: 0.5s;
}
img {
border-radius: 50%;
margin-right: 24px;
margin-bottom: -26px;
}
span {
font-size: 24px;
font-family: Lucida;
color: #37fb05;
}
small {
font-family: Lucida;
color: rgb(190, 188, 188);
margin-left: 80px;
}
p {
font-family: Lucida;
color: rgb(169 169 169);
}
h2 {
color: #fff;
}