-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle1.css
executable file
·129 lines (125 loc) · 2.34 KB
/
style1.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
body {
font-family:Poppins;
/* font-family:Arial,Helvetica, sans-serif; */
}
div{ margin:0;
}
p,ul{
line-height: 1.3em;
margin-right: 2px;
margin-left:2px;
}
h2{
margin-bottom: 0;
}
h4{
color:blue;
font-size: 1.2em;
}
a{
text-decoration: none;
}
.img100 {
width: 100%;
height: 100%;
}
#imgsc {
width: 100%;
height: 100%;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 10px; /* Place the button at the bottom of the page */
right: 10px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color:rgba(255, 0, 0, 0.7); /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}
#submenu {
font-size: 1em;
color: black;
}
#ham{
margin-right:5px;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color:#ff4d4d;
overflow-x: hidden;
transition: 0.1s;
}
.sidenav a {
padding: 10px 10px 10px 32px;
text-decoration: none;
font-size: 1.1em;
color: #ffffff;
display: block;
transition: 0.1s;
}
.sidenav span{
padding: 10px 10px 10px 10px;
font-size: 1.7em;
background-color:#000;
border-bottom: 1px solid red;
// margin-bottom:8px;
display: block;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
cursor:pointer;
position: absolute;
top: 0;
right: 0;
font-size: 24px;
margin:0;
padding:8px;
}
#main {
transition: margin-left .1s;
padding: 14px;
}
#submenu.active{
background-color:#000;
color:#ff0000;
}
#menu.active{
background-color:#000;
color:red;
}
#submenu:hover {
background-color: #fff; /* Add a background on hover */
}
#menu:hover {
background-color: #000; /* Add a background on hover */
}
/* Create two equal columns that floats next to each other */
.column1 {
float: left;
width: 55%;
}
.column2 {
float: left;
width: 45%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;