-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (102 loc) · 1.67 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
* {
margin: 0;
padding: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@font-face {
font-family: 'Druk Cond';
src: url(drukcond.ttf);
}
body, html {
font-family: 'Druk Cond';
width: 100%;
height: 100%;
overflow: hidden;
}
.main {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-image: url(img1.jpg);
background-size: cover;
background-position: center center;
}
.title {
font-size: 300px;
margin-top: -30px;
color: #FFF200;
}
.glitch {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 90;
pointer-events: none;
}
.open-tilmeld {
position: absolute;
margin-top: 300px;
color: #FFF200;
font-size: 50px;
text-transform: uppercase;
letter-spacing: 1px;
z-index: 97;
cursor: pointer;
}
.open-tilmeld:hover {
text-decoration: underline;
}
.mail-box {
font-family: 'Helvetica',Arial;
position: absolute;
background: #FFF200;
width: 590px;
height: 260px;
margin-top: 20px;
padding: 40px;
text-align: center;
z-index: 100;
display: none;
}
form input {
display: block;
text-align: center;
margin: auto;
}
input[type="email"]{
width: 320px;
font-size: 16px;
padding: 7px 10px;
margin-top: 15px;
background: none;
border: none;
border-bottom: 1px solid black;
outline: none !important;
}
input[type="submit"], button{
margin-top: 20px;
font-size: 13px;
border: 1px solid black;
background: none;
padding: 10px 20px;
}
input[type="submit"]:hover, button:hover{
background: black;
color: #FFF200;
cursor: pointer;
}
p {
margin-top: 30px;
font-size: 11px;
line-height: 150%;
}
.done {
display: none;
margin-top: 50px;
}