-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathStyle.css
More file actions
119 lines (107 loc) · 1.92 KB
/
Style.css
File metadata and controls
119 lines (107 loc) · 1.92 KB
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
body {
background-color: black;
overflow-y: scroll;
margin: 0;
background-image: url("background.jpg");
background-attachment: fixed;
background-size: 100% 100%;
}
.logo-image{
img{float: left}
width: 46px;
height: 46px;
border-radius: 50%;
overflow: hidden;
margin-top: 0px;
}
h1 {
color: white;
font-size: 200px;
font-family: "Space Mono", monospace;
text-align: center;
position: relative;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.navbar {
background: Gray;
font-family: calibri;
padding-right: 15px;
padding-left: 15px;
position: fixed;
top: 0;
z-index: 100;
}
.navdiv {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo a {
font-size: 35px;
font-weight: 600;
color: white;
}
li {
list-style: none;
display: inline-block;
}
li a {
color: white;
font-size: 18px;
font-weight: bold;
margin-right: 25px;
margin-left: 10px;
border-radius: 10px;
padding: 10px;
width: 90px;
}
button {
background-color: white;
margin-left: 10px;
border-radius: 10px;
padding: 10px;
width: 90px;
}
button a {
color: white;
font-weight: bold;
font-size: 15px;
}
.footer {
width: 100%;
height: 80px;
background-color: white;
text-align: center;
padding: 20px 0;
}
main {
margin-top: 57px; /* Adjust this margin to avoid content being hidden under the header */
}
p{
color: #dddddd;
}
.collapsible {
background-color: #444444;
color: #dddddd;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #ccc;
}
.content {
padding: 0 18px;
display: none;
overflow: hidden;
background-color: #f1f1f1;
}
h2{
background-color: #dddddd;
}