-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (41 loc) · 738 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (41 loc) · 738 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
*{
margin: 0em;
padding: 0em;
}
body{
background-image: url(https://i1.faceprep.in/ProGrad/animated-background.png);
color: white;
font-family: Impact;
font-style: normal;
font-size: 30px;
font-weight: 100;
}
header{
display: flex;
justify-content: center;
background-color: #7D12E8;
padding: 20px;
}
.universe{
display: flex;
justify-content: space-evenly;
align-items: flex-start;
margin-top: 5%;
}
.cartoon{
display: grid;
grid-template-columns: auto auto auto;
justify-content: flex-end;
grid-gap: 1em;
}
.name{
grid-column: 1/ span 3;
text-align: center;
}
img{
height: 100px;
width: 100px;
}
h1,h2{
text-transform: uppercase;
}