-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
56 lines (48 loc) · 966 Bytes
/
index.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
body {
padding: 50px;
font-family: Merriweather, sans-serif;
text-align: center;
}
input {
width: 400px;
border-radius:6px;
padding: 10px 16px;
border: 1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
input:focus {
outline:0;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 4px rgba(82,168,236,0.6);
}
button {
font-size: 18px;
padding: 12px;
border-radius: 8px;
background: #eee;
box-shadow: 0;
border: 1px solid #ddd;
box-shadow: 0 2px 1px 1px #ddd;
}
button:active, button:focus {
outline: 0;
}
button:active {
box-shadow: inset 0 2px 2px #ddd;
}
.container {
position: relative;
min-height: 500px;
}
.container .bottom-align {
position: absolute;
display: inline-block;
transform: translate(-50%, 0);
bottom: 0;
}
.container .ship {
position: relative;
}
.control button, .control input {
font-size: 16px;
}