-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
96 lines (83 loc) · 1.31 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
* {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
margin: 0;
}
.left {
box-sizing: border-box;
width: 25%;
height: 100vh;
background-color: rgb(50, 50, 90);
float: left;
color: white;
padding: 20px;
/* text-align: center; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.profile {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
}
.name {
font-size: 19px;
}
.bio {
text-align: center;
}
.connect-button {
padding: 10px 20px;
border-radius: 30px;
border: none;
}
.right {
width: 75%;
height: 100vh;
background-color: rgb(24, 24, 26);
float: left;
color: white;
overflow: auto;
box-sizing: border-box;
}
.nav-container {
display: flex;
align-items: center;
justify-content: space-between;
background-color: white;
margin: 10px;
padding: 10px;
color: black;
border-radius: 5px;
}
.nav-container h3 {
margin: 0;
}
.nav a {
color: gray;
text-decoration: none;
margin: 0 10px;
}
.nav a:hover {
color: black;
transition: ease-in-out 500ms;
}
.content {
margin: 30px 10px;
}
@media only screen and (max-width: 500px) {
.left {
float: none;
width: 100%;
padding: 20px;
}
.right {
float: none;
width: 100%;
height: auto;
}
}