-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
63 lines (58 loc) · 935 Bytes
/
index.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
55
56
57
58
59
60
61
62
63
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: black;
color: white;
overflow-x: hidden;
}
header {
background-color: white;
color: #fff;
padding: 1rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
h2 {
color: #f9f3f3;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 1em;
}
img {
width: 50%;
height: auto;
}
.logo img {
height: 200px;
margin-bottom: 1px;
transition: transform 0.3s ease-in-out;
}
.logo img:hover{
transform: scale(1.1);
}
.container {
padding: 20px;
}
.profile {
margin-bottom: 40px;
}
.profile img {
border-radius: 50%;
width: 150px;
height: 150px;
transition: transform 0.3s ease-in-out;
}
.profile img:hover{
transform: scale(1.1);
}