-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathstyles.css
54 lines (52 loc) · 876 Bytes
/
styles.css
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
body{
background-color: black;
color: white;
}
.top{
width: 100%;
color: yellow;
display: flex;
justify-content: center;
}
a{
text-decoration: none;
}
.btn{
font-size: 20px;
width: 80px;
height: 30px;
background-color: rgb(188, 145, 63);
color: black;
box-shadow: 2px 2px 5px 3px rgb(236, 238, 236);
}
.btn:hover{
background-color: rgb(89, 230, 89);
color: white;
box-shadow: 2px 2px 7px 3px rgb(89, 230, 89);
}
.footer{
display: flex;
justify-content: center;
}
.footer a{
margin-left: 15px;
}
.mid{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.content{
width: auto;
}
.content-img{
width: 450px;
height: 500px;
}
img{
width: 300px;
height: 300px;
border-radius: 40px;
box-shadow: 3px 3px 3px 1px rgb(216, 58, 58);
}