-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
79 lines (63 loc) · 1.22 KB
/
css.css
File metadata and controls
79 lines (63 loc) · 1.22 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
body{
overflow-y :scroll;
}
ul:not(.normallist) {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:#36454f;
}
li:not(.normallist) {
float: left;
}
li:not(.normallist) a {
font-size:20;
display: block;
color: white;
text-align: center;
padding: 20px 20px;
text-decoration: none;
}
li a:hover:not(.normallist){
background-color: #5FC3E4;
}
.active {
background-color: #02AAB0;
}
ul:not(.normallist) {
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
}
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50.00%;
padding:15px;
}
img:not(.logo) {
border: 1px solid yellow;
border-radius: 4px;
padding: 3px;
}
#gradient {
background-image: linear-gradient(to right,#780206, #061161);
}
#gradient2 {
background-image: linear-gradient(to left,#780206, #061161);
}
.row:after {
content: "";
display: table;
clear: both;
}
b{text-decoration:underline;}
h1{color:orange;
font-family:courier;
text-transform:uppercase;
text-align:center;}
div:not(.column):not(.row){display:inline-block;
padding:0px;
margin:0px;
}