-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (83 loc) · 1.48 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
header {
height: 60px;
text-align: center;
}
main {
background-color: #0087de;
height: 900px;
text-align: center;
}
h1 {
height: 38px;
font-family: Roboto;
font-size: 32px;
font-weight: 300;
letter-spacing: 0.6px;
text-align: center;
color: #1f233e;
padding-top: 40px;
}
.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;
font-family: Source Sans Pro;
font-size: 14px;
letter-spacing: 0.2px;
text-align: center;
color: #ffffff;
}
#shorten {
width: 91px;
height: 37px;
border-radius: 3.2px;
border: solid 0.8px #1f233e;
background-color: inherit;
margin-top: 48px;
font-family: Source Sans Pro;
font-size: 14px;
letter-spacing: 0.2px;
text-align: center;
color: #ffffff;
margin-right: -3px;
}
#shorten:hover {
background-color: #1f233e;
border: solid 0.8px #4a4a4a;
color: #0087de;
cursor: pointer;
}
#shorten:active {
background-color: #ffffff;
border: solid 0.8px #4a4a4a;
color: #1f233e;
cursor: pointer;
}
#responseField {
min-width: 191px;
min-height: 120px;
border: solid 2px #ffffff;
margin: auto;
margin-top: 25px;
font-family: Source Sans Pro;
font-size: 16px;
letter-spacing: 0.2px;
text-align: center;
color: #ffffff;
overflow: auto;
}