-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathStyles.css
More file actions
35 lines (35 loc) · 699 Bytes
/
Styles.css
File metadata and controls
35 lines (35 loc) · 699 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
*{
padding:0%;
margin:0%;
}
body{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: black;
color:aliceblue;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 40px;
font-weight: 500;
}
.text{
margin-top: 10%;
}
.logo{
margin-top: 10%;
height: 80px;
width: 80px;
background-image: url(./Twitter.png);
background-size: cover;
border-radius: 50%;
border-color: blue;
}
.logo:hover{
height: 100px;
width: 100px;
background-image: url(./X.png);
background-color: white;
padding:10px;
transform: translate(-20);
}