-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_page.css
111 lines (94 loc) · 1.8 KB
/
home_page.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: flex-start;
overflow-x: hidden;
}
.container {
width: 65%;
margin-top: 20px;
margin-right: 30px;
}
header {
background-color: #eaeaea;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
}
header img {
width: 100%;
height: auto;
}
.profile-section {
display: flex;
padding: 20px;
background-color: white;
margin-bottom: 20px;
}
.profile-pic img {
border-radius: 50%;
width: 100px;
height: 100px;
margin-right: 20px;
}
.profile-info h1 {
margin-bottom: 10px;
}
.profile-info p {
color: gray;
}
.general-info, .posts, .experience, .interests {
background-color: white;
padding: 20px;
margin-bottom: 20px;
}
.experience-item {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-bottom: 10px;
}
button {
background-color: #0073b1;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 3px;
}
button:hover {
background-color: #005582;
}
.nav-bar {
position: fixed;
top: 20%;
right: 20px;
display: flex;
flex-direction: column;
align-items: flex-end;
background-color: white;
padding: 10px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.icon-container {
display: flex;
flex-direction: column;
}
.nav-icon {
width: 30px;
height: 30px;
margin-bottom: 10px;
cursor: pointer;
}
.nav-icon:hover {
opacity: 0.7;
}