-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.css
More file actions
106 lines (100 loc) · 1.81 KB
/
Copy pathgeneral.css
File metadata and controls
106 lines (100 loc) · 1.81 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
button, textarea{
border:none;
resize:none;
border-radius:5px;
}
body{
background-color: rgb(0, 0, 0);
font-family: Roboto;
}
.site-footer {
text-align: center;
padding: 15px 0;
font-size: 14px;
color: #aaa;
border-top: 1px solid #333;
margin-top: 40px;
}
p{
color:white;
margin-left: 2%;
}
button{
font-size: 15px;
color:rgb(255, 255, 255);
background-color: rgb(40, 40, 40);
height:30px;
}
button:hover{
color:rgb(100, 100, 100);
background-color: rgb(30, 30, 30);
}
a{
font-size: 15px;
text-align: center;
color:rgb(255, 255, 255);
background-color: rgb(40, 40, 40);
padding: 8px 8px 8px 32px;
text-decoration: none;
}
a:hover{
color:rgb(100, 100, 100);
background-color: rgb(30, 30, 30);
}
.container {
display: flex;
gap: 1%;
margin: 1% 2% 1% 2%;
}
.subcontainer{
display: flex;
gap: 1%;
}
#NavBtn{
margin-left: 2%;
font-size:20px;
cursor:pointer;
color:rgb(200,200,200);
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: rgb(50, 50, 50);
overflow-x: hidden;
transition: 0.3s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 0px;
text-decoration: none;
font-size: 16px;
color: white;
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #8e8e8e;
}
.sidenav .closebtn {
position: absolute;
background-color: rgb(50, 50, 50);
top: 0;
right: 0px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
#appIcon{
height:15vh;
width: 15vh;
margin-left:22%;
margin-bottom: 5%;
}