-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (53 loc) · 908 Bytes
/
styles.css
File metadata and controls
57 lines (53 loc) · 908 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
43
44
45
46
47
48
49
50
51
52
53
54
55
*{
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.nav{
width: 100%;
height: 60px;
display: flex;
background-color: #d5e5e7;
position:fixed;
}
.left, .right{
display: flex;
justify-content: center;
align-items: center;
}
.right{
flex: 1;
}
.left{
width: 20%;
}
.right>ul{
display: flex;
}
.right>ul>li{
list-style: none;
margin: 0 10px 0 10px;
}
.right>ul>li:hover{
cursor: pointer;
color: red;
}
.home-wrap{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.image{
align-items: center;
}
.img{ border-radius: 50%;
width: 150px;;
height: 150px;
padding: 60px;
}
.name-wrap{
padding: 5px;
}