forked from vikasshah0/HacktoberFest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (39 loc) · 685 Bytes
/
style.css
File metadata and controls
42 lines (39 loc) · 685 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
body {
text-align: center;
background-image: url("./img/bg.jpg");
padding: 0;
margin: 0;
}
.header{
padding: 30px;
background-color: #ff8c56;
margin-bottom: 50px;
}
.users{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
color: aliceblue;
}
.card{
background-color: rgba(255, 140, 86,0.9);
width: 400px;
height: 500px;
margin: 10px;
border-radius: 10%;
}
img{
width: 350px;
height: 350px;
border-radius: 10%;
border: 10px solid rgb(121, 118, 118);
}
.footer{
background-color: #ff8c56;
padding: 20px;
}
a{
text-decoration: none;
color: black;
}