-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
112 lines (97 loc) · 1.42 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
*
{
margin: 0;
padding:0;
font-family: 'Roboto', sans-serif;
}
.container
{
width: 100%;
height: 100vh;
background-image:linear-gradient(rgb(255, 255, 255));
background-position: center;
background-size: cover;
box-sizing: border-box;
}
.words
{
color: white;
margin-left: 40px;
}
.navbar
{
height:12%;
display: flex;
align-items: center;
background-color: green;
}
.avatar
{
width: 300px;
cursor: pointer;
}
.menu-icon
{
width: 30px;
cursor: pointer;
margin-left: 40px;
margin-right: 40px;
}
nav
{
flex: 1;
text-align: left;
}
nav a
{
text-decoration: none;
color: black;
font-size: 12px;
padding: 12px 16PX;
display: block;
}
.content
{
width: 100%;
position: relative;
margin-left: 2px;
margin-top: 10px;
}
.menu-button
{
background-color: transparent;
color: white;
padding: 15px;
font-size: 15px;
cursor: pointer;
border: none;
}
.right-menu
{
float: right;
position: relative;
display: block;
}
.dropdown-menu
{
display: none;
position: absolute;
background-color: white;
min-width: 158px;
z-index: 1;
}
.dropdown-menu a:hover{
background-color: #007500;
color: #fff;
}
.right-menu:hover .dropdown-menu{
display: block;
}
.right-menu:hover .menu-button
{
background-color: transparent;
}
.announcements
{
margin-top: 5px;
}