forked from Tharindu37/testhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (51 loc) · 878 Bytes
/
styles.css
File metadata and controls
51 lines (51 loc) · 878 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
*{
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: rgb(213, 229, 231);
}
.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-wrap{
width: 200px;
height: 200px;
border-radius: 100%;
display: flex;
overflow: hidden;
}
.name-wrap{
padding: 5px;
}