-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (111 loc) · 1.88 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body{
font-family: Montserrat, sans-serif;
font-weight: 500;
font-size: 20px;
background-color: wheat;
padding-top: 80px;
}
header {
background-color: white;
height: 8vh;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
}
.header-content {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0 100px;
height: 100%;
}
.left-side {
display: flex;
flex-direction: row;
align-items: center;
margin-right: 0;
}
.profile-picture {
height: 50px;
width: 50px;
border-radius: 50%;
object-fit: cover;
margin-right: 25px;
}
nav {
display: flex;
align-items: center;
height: 100%;
}
nav button {
background-color: white;
height: 100%;
padding: 0 2rem;
border: none;
font-size: 20px;
cursor: pointer;
}
nav button:hover {
background-color: lightgray;
color: white;
font-weight: bold;
}
.side-bar {
position: fixed;
background-color: white;
color: black;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
top: 50%;
left: 20px;
width: 60px;
height: 300px;
margin-top: -150px;
border-radius: 60px;
padding: 60px 10px;
}
.side-bar button {
background-color: transparent;
border: none;
cursor: pointer;
}
.side-bar img {
height: 50px;
width: 50px;
object-fit: scale-down;
margin-bottom: 60px;
}
.accounts .tooltip {
visibility: hidden;
width: 150px;
font-size: 1rem;
z-index: 1;
position: absolute;
left: 105%;
background-color: black;
color: white;
text-align: center;
border-radius: 5vw;
opacity: 0;
transition: opacity 0.3s;
padding: 4px 6px 4px 6px;
}
.accounts:hover .tooltip {
visibility: visible;
opacity: .75;
}
.intro {
display: grid;
text-align: center;
padding: 20vh 10vw 0 10vw;
margin-bottom: 25vh;
}
.intro-p {
font-weight: bold;
font-size: 5rem;
}