-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
162 lines (141 loc) · 2.84 KB
/
style.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
html,
body {
margin: 3px;
padding: 3px
}
html {
background-color:black;
}
.wrapper {
margin-right: auto;
margin-left: auto;
max-width: 960px;
padding-right: 10px;
padding-left: 12px;
}
body h1 {
text-align: center;
font-family: arial;
}
body ul {
display: flex;
list-style: none;
flex-wrap: wrap;
align-items: flex-start;
justify-content: center;
flex-basis: 80%;
height: 0;
overflow: hidden;
}
div.section.open ul {
height: auto;
}
body ul li {
flex-basis: 20%;
display: flex;
flex-direction: column;
margin-bottom: 25px;
align-items: center;
}
div.section.open {
padding-bottom: 20px;
border-bottom: 3px solid #3f87a6;
position: relative;
border-bottom-width: 3px;
}
.mainHeading{
margin: 1em 0 0.5em 0;
color: #ff0707;
font-weight: normal;
font-family: 'Ultra', sans-serif;
font-size: 36px;
line-height: 42px;
text-transform: uppercase;
text-shadow: 0 3px white, 0 3px #777;
}
#tabs {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 10;
background-color: lightgray;
border-bottom: 1px solid #ccc;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
text-align: center;
}
#tabs a {
display: inline-block;
text-decoration: none;
color: skylue;
font-family: Times new roman;
padding: 10px;
}
#tabs:hover a {
color: gray;
}
#tabs a:hover {
color: black;
}
.anchor {
position: absolute;
top: -40px; /* so that the tabs don't block the title */
display: block;
}
.title {
margin: 1em 0 0.5em 0;
font-weight: normal;
position: relative;
text-shadow: 0 -1px rgba(0, 0, 0, 0.6);
font-size: 28px;
line-height: 40px;
background: #355681;
background: rgba(33, 96, 236, 1);
border: 1px solid #fff;
padding: 5px 15px;
color: gray;
border-radius: 0 10px 0 10px;
box-shadow: inset 0 0 5px rgba(43, 105, 156, 0.5);
font-family: 'Muli', sans-serif;
cursor: pointer;
position: relative;
}
.title::after {
content: '';
position: absolute;
right: 15px;
top: 0;
height: 100%;
width: 40px;
background-image: url('./images/arrow-down.svg');
background-repeat: no-repeat;
background-position: right center;
background-size: 24px;
-webkit-filter: drop-shadow(0 -1px rgba(0, 0, 0, 0.6));
filter: drop-shadow(0 -1px rgba(0, 0, 0, 0.6));
}
div.section.open .title::after {
background-image: url('./images/arrow-up.svg');
}
div.desc {
font-family: arial;
font-size: 14px;
text-align: center;
padding: 15px;
}
.imageContainer {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 250px;
color: rgb(19, 251, 176);
text-decoration: none;
}
.imageContainer:hover {
border: 1px solid #777;
}
.imageContainer img {
width: 100%;
height: auto;
}