-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (40 loc) · 925 Bytes
/
style.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
body{
background: rgb(56, 56, 56);
display: flex;
justify-content: space-around;
flex-direction: column;
align-items: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
height: 700px;
}
.top{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
margin-bottom: 50px;
color: white;
}
.center{
display: flex;
width: 100%;
height: 250px;
justify-content: space-around;
background-color:transparent;
}
.tool{
height: 250px;
width:250px;;
display: flex;
justify-content: center;
align-self: center;
align-items: center;
background-color: rgb(41, 40, 40);
border: 4px solid rgb(255, 255, 255);
overflow: hidden;
border-radius: 50% 20% / 10% 40%;
}
.tool:hover,img:hover{
width:300px;
height: 300px;
}