-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
67 lines (61 loc) · 927 Bytes
/
styles.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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: sans-serif;
line-height: 1.5;
}
/* Main */
.main {
display: block;
margin: 0 auto;
}
/* Mensajes */
.messages {
padding: 1rem;
}
/* Control */
.control {
position: fixed;
left: 0;
right: 0;
bottom: 0;
display: block;
overflow: hidden;
background-color: #fff;
border-top: 6px solid #005eba;
}
.control input {
display: block;
float: left;
margin: 0;
border: 0;
padding: 0.5rem;
width: calc(100% - 6rem);
height: 3rem;
line-height: 2rem;
font-size: 1rem;
}
.control button {
display: block;
float: left;
margin: 0;
border: 0;
padding: 0.5rem 1rem;
width: 6rem;
height: 3rem;
background: #005eba;
line-height: 2rem;
font-size: 1rem;
color: #fff;
cursor: pointer;
}
#username {
border-right: 2px solid #005eba;
width: 10rem;
font-weight: bold;
}
#value {
width: calc(100% - 16rem);
}