-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.css
More file actions
111 lines (98 loc) · 2.25 KB
/
index.css
File metadata and controls
111 lines (98 loc) · 2.25 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
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
/* ==========================================================================
Responsive images and box padding
========================================================================== */
img,
object {
display: block;
border: 0;
max-width: 100%;
height: auto;
}
* {
-moz-box-sizing: border-box;
-webkit-kit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
body {
/* fonts explicitly being referenced as they were not deployed to GitHub Pages via npm run deploy"*/
font-family: sans-serif, -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background: #fefefe;
}
.container {
float: left;
width: 100%;
/*border: 3px solid blueviolet;*/
padding: 10px;
}
h1 {
font-size: 3em;
font-weight: 600;
/*color: blueviolet;*/
}
h2 {
font-size: 1.5em;
font-weight: 600;
/*color: blueviolet;*/
}
a {
font-weight: 600;
font-size: 1.5em;
margin: 5px;
}
.pageLink {
font-weight: 600;
font-size: 1em;
margin: 0;
}
.navBarBrandLink {
margin: 10px;
/*/font-size: 1em;*/
font-weight: 600;
color: #6D2C8B;
vertical-align: bottom;
}
.navBarLink {
margin: 10px;
font-weight: 600;
color: #6D2C8B;
vertical-align: bottom;
}
#searchSequences {
margin: 0 auto;
width: 100%;
text-align: center;
}
#searchSequencesInputTitle, #searchSequencesInputUMLTag {
font-size: 18px;
font-size: 1.5em;
font-weight: 600;
color: #6D2C8B;
margin: 5px;
width: 100%;
padding: 16px 10px;
border-radius: 4px;
border: 1px solid #4e5766;
box-shadow: 1px 0.5px #888888;
}
#searchSequencesButton {
font-size: 18px;
font-size: 1.5em;
font-weight: 600;
width: 25%;
padding: 14px 10px;
border-radius: 4px;
background-color: #6D2C8B;
color: #ffffff;
cursor: pointer;
}