-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (76 loc) · 1.57 KB
/
style.css
File metadata and controls
89 lines (76 loc) · 1.57 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
body {
width: 100%;
background-color: black;
font-family: 'Montserrat';
margin: 0;
}
.header {
height: 25%;
}
.header > .logo {
margin-left: auto;
margin-right: auto;
}
.logo-img {
height: 100%;
display: block;
margin-left: auto;
margin-right: auto;
clip: rect(0, 1078px, 574px, 0);
fill: black;
background: linear-gradient(45deg, #110000, red, #110000);
}
.divider {
width: 10%;
height: auto;
display: inline-block;
}
.navbar {
width: 100%;
height: 20px;
background: linear-gradient(black, red, red, black);
padding-top: 16px;
padding-bottom: 16px;
overflow: hidden;
text-align: center;
}
.navbar a {
width: 25%;
padding: 14px 16px;
text-decoration: none;
color: black;
border-radius: 10%;
}
.navbar a:hover {
background: linear-gradient(315deg, #aaa, #fff);
color: black;
border: 1px solid white;
}
.navbar a.active {
box-sizing: border-box;
background: linear-gradient(45deg, #630000, #dd0000);
color: white;
}
.sticky {
list-style-type: none;
margin-left: auto;
margin-right: auto;
min-height: 20vw;
max-height: 20vw;
width: 20vw;
background: -webkit-gradient(linear, left top, right bottom, color-stop(81%,#ddaaaa), color-stop(82%,#ddaaaa), color-stop(82%,#ddaaaa), color-stop(100%,#ddcccc));
border-bottom-right-radius: 60px 5px;
padding: 2%;
}
#accSticky {
float: left;
width: 33.333%;
}
#magdSticky {
float: right;
width: 33.333%;
}
#csiSticky {
display: inline-block;
width: 33.333%;
}