-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (102 loc) · 2.03 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
header {
text-align: center;
background-color: #ef6b68;
padding: 10px;
}
main {
background-color: #ef6b68;
height: 900px;
text-align: center;
}
h1 {
height: 38px;
font-family: Work Sans, sans-serif;
font-size: 32px;
font-weight: 300;
letter-spacing: 0.6px;
text-align: center;
color: #1f233e;
padding-top: 40px;
margin: 0;
}
h3 {
font-family: Work Sans, sans-serif;
font-size: 18px;
font-weight: 200;
letter-spacing: 0.2px;
text-align: center;
color: #1f233e;
margin: 0;
padding-top: 5px;
padding-bottom: 5px;
}
li {
text-align: center;
margin: 0 25% 0 25%;
}
.logo {
width: 110px;
height: 28px;
margin-top: 40px;
object-fit: contain;
}
.container {
width: 400px;
margin: auto;
text-align: center;
}
input {
width: 219px;
height: 37px;
border-radius: 3.2px;
border: solid 0.8px #1f233e;
background-color: inherit;
display: block;
margin: auto;
margin-top: 10px;
font-family: Source Sans Pro;
font-size: 14px;
letter-spacing: 0.2px;
text-align: center;
color: #ffffff;
}
#submit {
width: 125px;
height: 30px;
border-radius: 2px;
border-color: inherit;
background-color: #1f233e;
font-family: Work Sans, sans-serif;
font-size: 16px;
font-weight: 500;
letter-spacing: 0.3px;
margin-top: 30px;
text-align: center;
color: #ef6b68;
margin-right: -3px;
}
#responseField {
min-width: 191px;
min-height: 120px;
background-color: #1f233e;
margin: auto;
margin-top: 25px;
font-family: Source Sans Pro;
font-weight: 400;
font-size: 14px;
letter-spacing: 0.2px;
text-align: center;
color: #ffffff;
overflow-wrap: break-word;
padding: 20px;
}
#submit:hover {
color: #ffffff;
cursor: pointer;
}
#submit:active {
background-color: #ffffff;
border-color: #ffffff;
color: #ef6b68;
cursor: pointer;
}