-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (106 loc) · 2.11 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
113
114
115
116
117
118
119
120
121
122
123
@font-face {
font-family: 'AlteHaasGrotesk';
src: url('/font/AlteHaasGroteskRegular.ttf');
}
@font-face {
font-family: 'AlteHaasGroteskBold';
src: url('/font/AlteHaasGroteskBold.ttf');
}
* {
box-sizing: border-box;
}
html,
body {
background: #fff2f2;
color: #545454;
margin: 0;
padding: 0;
font-family: AlteHaasGrotesk, Arial, Helvetica, sans-serif;
min-height: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
font-size: 1.1em;
}
h1 {
font-family: AlteHaasGroteskBold, Arial, Helvetica, sans-serif;
background-image: url(/img/logo.png);
background-size: contain;
background-repeat: no-repeat;
line-height: 6vw;
font-size: 7vw;
padding: 6vw 0;
background-position: right;
}
h2 {
font-family: AlteHaasGroteskBold, Arial, Helvetica, sans-serif;
font-weight: bold;
}
.sub-heading {
text-align: left;
/* font-family: AlteHaasGroteskBold, Arial, Helvetica, sans-serif; */
/* font-weight: bold; */
}
body {
width: 100%;
}
.cont {
width: 100%;
max-width: 815px;
margin: auto;
height: auto;
padding: 20px;
}
.button {
margin: 10px 20px;
display: inline-block;
padding: 10px 20px;
border-radius: 2px;
background: #a99b9a;
color: #fff2f2;
text-decoration: none;
width: 300px;
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
transition: 0.3s;
text-align: center;
}
.button:hover {
background: #64605f;
}
.input-button {
display: flex;
width: 100%;
max-width: 450px;
border: 1px solid #ddd;
border-radius: 4px;
overflow: hidden;
}
.input-button input:not([type=button]) {
border: 0;
border-right: 1px solid #ddd;
background: #fff;
color: #545454;
padding: 10px;
width: 100%;
font-size: 1em;
}
.input-button button,
.input-button input[type=button] {
height: 45.3px;
color: 545454;
margin: 0;
padding: 10px;
border: 0;
flex: 0 0 auto;
font-size: 0.8em;
cursor: pointer;
}
/* .contents {
text-align: center;
} */
.contents h3 {
font-size:1.3em;
}
.contents p {
font-size: 1.1em;
}