-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
93 lines (82 loc) · 1.64 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
body {
margin: 80%;
margin: 0 auto;
padding: 50px;
font-size: 28px;
font-family: Garamond;
letter-spacing: 1.5px;
color: #222;
text-transform: uppercase;
font-weight: bold;
background-image: url('https://images.pexels.com/photos/231008/pexels-photo-231008.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb');
background-position: bottom;
background-size: cover;
}
.header {
width: 100%;
padding: 25px;
}
.header--container {
width: 60%;
margin: 0 auto;
background-color: rgba(0, 0, 0, .40);
border-radius: 5px;
padding: 25px;
}
h1 {
font-family: Helvetica;
font-size: 36px;
text-align: center;
letter-spacing: 2px;
text-transform: uppercase;
color: #fff;
}
.overlay {
width: 50%;
margin: 0 auto;
height: 525px;
}
.input {
margin: 0 auto;
width: 100%;
height: 35px;
border-radius: 3px;
border: 2px solid #f2f2f2;
padding: 2px;
text-align: center;
color: #222;
font-family: Helvetica;
font-size: 18px;
text-transform: uppercase;
}
ul li {
list-style: none;
padding: 0px;
margin-top: -15px;
margin-left: -40px;
}
.btn {
width: 100%;
height: 45px;
background-color: rgba(255, 255, 255, .65);
border: none;
border-radius: 2px;
color: #222;
font-size: 22px;
text-transform: uppercase;
letter-spacing: 1.5px;
font-family: Helvetica;
margin: 0 auto;
}
img {
height: 30%;
}
.paragraph--header {
display: inline-block;
}
.hidden {
display: none;
}
.show {
display: block;
}