-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
119 lines (101 loc) · 2.17 KB
/
css.css
File metadata and controls
119 lines (101 loc) · 2.17 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
119
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,500;1,100;1,500&family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--Sociumtech-Orange: #FF6700;
--Sociumtech-Blue: #00519D;
}
body {
margin: 0 auto;
min-height: 100vh;
display: flex;
}
.container {
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-top: 194px;
padding-bottom: 306px;
max-width: 1440px;
height: 780px;
}
input {
padding: 25px 94px;
margin: 27px 0;
text-align: center;
width: 688px;
height: 75px;
color: #ACACAC;
text-align: center;
font-feature-settings: 'clig' off, 'liga' off;
font-family: Roboto;
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: 24px;
border-radius: 4px;
border: 1px solid var(--Sociumtech-Orange, #FF6700);
/* 85.714% */
letter-spacing: 0.15px;
}
p {
display: flex;
justify-content: center;
align-items: center;
color: var(--Sociumtech-Blue, #00519D);
font-feature-settings: 'clig' off, 'liga' off;
font-family: Roboto;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 24px;
width: 926px;
height: 76px;
/* 60% */
letter-spacing: 0.15px;
}
button {
color: #FFF;
text-align: center;
font-feature-settings: 'clig' off, 'liga' off;
font-family: Roboto;
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: 24px;
/* 85.714% */
letter-spacing: 0.15px;
border-radius: 4px;
background: var(--Sociumtech-Orange, #FF6700);
border: 1px solid;
/* 85.714% */
letter-spacing: 0.15px;
width: 370px;
height: 75px;
}
@media (max-width: 767px) {
.container {
width: 390px;
max-height: 844px;
}
p {
width: 338px;
height: 91px;
line-height: inherit;
}
input {
padding: 8px 27px;
width: 326px;
height: 40px;
}
button {
width: 326px;
height: 40px;
font-size: 18px;
}
}