-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
127 lines (106 loc) · 1.89 KB
/
index.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
*{
margin: 0;
}
body{
font-family: 'Roboto' , 'sans-serif';
}
/* Home Page CSS */
.navbar{
width: 100%;
height: 70px;
background-color: black;
}
.navbar-container{
display: flex;
align-items: center;
background-color: black;
padding: 0 60px;
height: 100%;
color:white;
font-family: "Sen" , "sens-sarif";
}
.logo-container{
flex: 1;
}
.logo{
font-family: "Sen" , "sens-sarif";
font-size: 30px;
color: rgb(192, 11, 11);
}
.menu-container{
flex: 6;
}
.menu-list{
display: flex;
list-style: none;
}
.menu-list-item{
margin-right: 70px;
font-size: 20px;
}
.menu-list-item.active{
font-weight: bolder;
}
.profile-container{
flex: 3;
display: flex;
align-items: center;
justify-content: flex-end;
}
.profile-text-container{
margin: 0 20px;
}
.profile-picture{
width: 32px;
height: 32px;
border-radius: 50%;
object-fit: cover;
}
.left-menu-icon{
color:white;
font-size: 20px;
margin-bottom: 40px;
}
.container{
background-color: #151515;
min-height: calc(100vh - 50px);
color: white;
}
.content-container{
padding-top: 10px;
margin-left: 60px;
}
.index-list{
border-style: solid;
border-radius: 20px;
opacity: 0.8;
margin-top: 20px;
margin-left: 600px;
margin-bottom: 20px;
width: 60vh;
height: 1vh;
text-align: justify;
display: flex;
flex-direction: column;
padding-bottom: 70px;
}
.index-list-item-title{
font-weight: bold;
font-size: 7mm;
font-variant-caps: all-petite-caps;
color: white;
position: absolute;
margin-top: 2.5vh;
margin-left: 11vh;
}
.index-list:hover{
transform: scale(1.1);
transition: 0.1s all ease-in-out;
background-color:aliceblue;
}
.index-list:hover .index-list-item-title{
color: red;
}
.index-list:hover .index-list-item-img{
opacity: 0.4;
}