This repository has been archived by the owner on Apr 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
135 lines (116 loc) · 3.6 KB
/
main.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
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.header {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: 12px;
}
.header_logo {
height: 620px;
/* overflow: auto; */
vertical-align: top;
width: 100%;
}
.header_text {
margin: -330px 0px 0px 280px;
color: white;
display: flex;
flex-wrap: wrap;
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
-webkit-animation: fadein 3s;
-webkit-font-smoothing: antialiased;
}
.sub_head_text {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
color:whitesmoke;
margin: 130px 0px 0px 280px;
letter-spacing: 0.2em;
font-style: italic;
opacity: 0.75;
}
a {
text-decoration: none;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.launch_cards {
background-color: #fff;
margin: 0 0 10px 0;
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
border-radius: 8px;
border-bottom: 1px hidden #fff;
margin-left: 70px;
padding: 10px;
width: 90%;
display:inline-block;
max-height: 350px;
overflow-y: auto;
overflow: scroll;
overflow-x: hidden;
/* height: 400px; */
}
::-webkit-scrollbar {
width: 0px; /* remove scrollbar space */
background: transparent; /* optional: just make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
background: #FF0000;
}
.rocket-name {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-size: x-large;
margin-top: -2px;
}
.rocket_window {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
font-size: small;
}
.launch_from {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
.launch_agencies {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
.show_more {
text-align: center;
background: #15418c;
color: white;
font-size: 17px;
font-weight: 600;
padding-top: 8px;
margin: 15px;
height: 40px;
cursor: pointer;
box-sizing: border-box;
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.footer {
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
text-align: center;
font-size: 14px;
font-weight: 600;
padding-top: 8px;
height: 50px;
color: black;
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}