-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (106 loc) · 1.72 KB
/
style.css
File metadata and controls
118 lines (106 loc) · 1.72 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
113
114
115
116
117
118
* {
box-sizing: border-box;
margin: 0;
padding: 0;
outline: none;
}
html,
body {
position: relative;
width: 100%;
height: 100%;
background: linear-gradient(
0deg,
rgba(46, 164, 82, 0.7),
rgba(47, 168, 81, 0.7)
),
url(https://mountainside.app/background.jpg) center/cover;
}
a {
color: #ffffff;
text-decoration: none;
}
.copyright {
margin: 20px 0;
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
}
.box {
position: absolute;
width: 427px;
height: 300px;
left: 149px;
top: 166px;
}
h1 {
font-family: Roboto;
font-style: normal;
font-weight: bold;
font-size: 80px;
line-height: 94px;
text-transform: uppercase;
color: #ffffff;
text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
margin-bottom: 10px;
}
p {
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
color: #ffffff;
margin: 5px 0;
}
form {
width: 428px;
display: flex;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
}
form input {
width: 332px;
height: 39px;
background: #ffffff;
border: 0;
padding: 10px;
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
}
form button {
width: 96px;
text-align: center;
height: 39px;
background: #5DA357;
border: 0;
padding: 10px;
cursor: pointer;
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 19px;
color: #ffffff;
}
svg {
width: 20px;
height: 20px;
fill: #fff;
margin: 20px 20px 0 0;
}
@media (max-width: 700px) {
.box {
width: 100%;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
padding: 20px;
}
form {
width: 100%;
}
}