-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (106 loc) · 2.62 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (106 loc) · 2.62 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
* {
box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
font-family: 'Roboto Condensed', sans-serif;
position: relative;
background: linear-gradient(white, grey); }
body a {
color: black; }
body a:hover {
color: black; }
#particles-js {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
justify-content: center;
align-items: center; }
#particles-js .background {
display: block;
z-index: 1;
background-color: white;
position: absolute;
width: 80%;
height: 90%; }
.landing {
position: absolute;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10; }
.landing .content {
width: 70%;
text-align: center;
margin-bottom: 100px; }
.landing .content .date {
font-size: 8vw; }
.landing .content .logo {
padding-bottom: 20px; }
.landing .content .logo img {
width: 50vh;
max-width: 350px; }
.landing .content .subscribe .email {
outline: none;
border: 0px;
padding: 7px;
font-size: 1.1em;
width: 275px;
transition: all 0.40s;
margin-bottom: 8px; }
.landing .content .subscribe .email.error {
border: 1px solid red; }
.landing .content .subscribe .button {
outline: none;
border: 0px;
background-color: white;
padding: 10px;
margin: 10px;
font-size: 1.3em;
display: inline-block;
transition: all 0.40s;
font-family: 'Roboto Condensed', sans-serif; }
.landing .content .subscribe .button span {
width: 4.6em;
display: block;
overflow: hidden;
transition: all 0.6s; }
.landing .content .subscribe .button:hover {
background-color: black;
color: white; }
.landing .content .subscribe .button.subscribed {
background-color: black;
color: white; }
.landing .content .subscribe .button.subscribed span {
width: 5.4em; }
@media (max-height: 800px) {
.landing .content {
margin-bottom: 0px; } }
@media (max-width: 800px) {
.landing .content {
margin-bottom: 0px; }
.landing .content .logo img {
width: 80%;
height: auto; }
.landing .content .date {
font-size: 3em; }
.landing .content .subscribe .email {
width: 90%; } }
.sponsor {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
padding-bottom: 15px;
z-index: 100;
font-size: 1.2em; }
/*# sourceMappingURL=style.css.map */