-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
159 lines (130 loc) · 2.28 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* Homepage CSS Code */
header {
font-family: sans-serif;
font-size: 20px;
padding: inherit;
margin-top: 25px;
text-align: center;
font-weight: bold;
}
h1 {
font-size: 15px;
text-align: center;
}
h2 {
font-size: 18.5px;
text-align: center;
}
body1 {
text-align: center;
}
/* Paragraph Code */
.p {
margin-top: 25px;
font-size: 13px;
font-family: sans-serif;
font-weight: 500;
}
/* Third Paragraph containing future project ideas, as well as current tasks that are being done to improve the website */
#ThirdParagraph {
font-weight: bold;
}
#UnderThird {
margin-left: 25px;
}
/* Class for lists that are organized */
.organizedlist {
margin-left: 10px;
font-size: 12px;
}
/* Banner Code */
.nav {
background-color: grey;
color: #ffffff;
list-style: none;
text-align: right;
padding: 20px 0 20px 0;
}
.nav > li {
display: inline-block;
padding: 0 25px 0 25px;
font-size: 12px;
}
.nav > li > a {
text-decoration: none;
color: #000000;
}
.nav > li > a:hover {
color: #c1c1c1;
}
/* Code for Dark Mode */
section {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
box-sizing: border-box;
padding: 75px;
transition: 0s;
}
section.dark {
background: #262626;
color: #fff;
transition: 0.5s;
}
ul1 {
position: absolute;
top: 20px;
right: 20px;
margin: 0px;
padding: 0;
width: 100px;
height: 30px;
z-index:1;
border: 1px solid #000;
border-radius: 4px;
cursor: pointer;
overflow: hidden;
}
ul1.active{
border-color:#fff;
}
ul1 li {
list-style: none;
width: 100%;
height: 30px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
}
ul1.active li {
transform: translateY(-30px)
}
ul1 li span {
display: block;
height: 30px;
line-height: 30px;
width: 100%;
color: #262626;
background: #fff;
}
ul1 li span:nth-child(1) {
background: #262626;
color: #fff;
}
/* List with current issues on the website */
#List {
margin-left: 10px;
font-size: 12px;
}
.Banner {
width: 100%;
margin-top: 0px;
display: block;
}
.Banner > .banner-image {
width: 100%;
height: 0%;
display: block;
}