-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStylesheet.css
More file actions
149 lines (145 loc) · 2.47 KB
/
Stylesheet.css
File metadata and controls
149 lines (145 loc) · 2.47 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
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
body, main, p, h2, h3, img, section, figure, figcaption, footer {
background-color: #0f2034;
}
h1, h2, p{
max-width: 1000px;
margin: auto;
}
h2 {
font-family: 'Istok Web', sans-serif;
font-size: 6vh;
}
h2, p, li {
color: rgb(255, 255, 255);
margin-top: 30px;
}
h2, p, figure {
margin-bottom: 30px;
}
p, li {
font-family: 'Average', serif;
/* font-size: 2.5vh; */
font-size: 1.4rem;
line-height: 1.5;
}
.collapsible {
background-color: #8BBEB2;
color: white;
font-size: 3vh;
cursor: pointer;
padding: 18px;
width: 400px;
border: none;
outline: none;
padding-bottom: 20px;
}
.content { /* this it the style for the Read more button text that appears */
display: none;
}
iframe {
width: 800px;
height: 800px;
border: 20px solid black;
margin: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
* {
box-sizing: border-box;
}
/* Style the tab */
nav {
padding-top: 18vh;
margin-left: 6vh;
float: left;
width: 12%;
/* height: 300px; */
}
/* Style the buttons that are used to open the tab content */
.tab button {
/* display: block; */
background-color: inherit;
padding: 14px 16px;
width: 100%;
border: none;
/* outline: none; */
text-align: left;
cursor: pointer;
transition: 0.3s;
color: #b4b7bc;
/* font-size: 3vh;
font-family: 'Roboto mono', serif; */
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #384e7746;
}
/* Active Tab colour */
.tab button.active {
background-color: #263551;
}
/* Style the tab content */
.tabcontent {
float: left;
padding: 0px 12px;
/* border: 1px solid rgb(216, 221, 239); */
width: 70%;
border-left: none;
height: 300px;
}
.welcomeText {
font-family: 'Istok Web', sans-serif;
font-size: 10vh;
text-align: left;
padding-left: 5vh;
}
section {
padding-top: 12vh;
}
img, .collapsible {
display: block;
margin-left: auto;
margin-right: auto;
/* width: 50%; */
}
.center {
text-align: center;
color: #b4b7bc;
}
.icon {
display: inline;
width: 18px;
height: 18px;
align-items: center;
margin-left: 20px;
}
a {
color: rgb(28, 138, 42);
}
/* Smaller screen sizes */
@media (max-width: 700px) {
.tab {
float: none;
width: 100%;
height: auto;
margin-left: 0;
padding-top: 0;
}
.tab button {
display: inline-block;
width: auto;
}
section {
padding-top: 2vh;
}
.welcomeText {
font-size: 7vh;
}
iframe {
width: 600px;
}
h2, p {
margin-top: 10px;
}
}