-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (56 loc) · 841 Bytes
/
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
*:focus {
outline: none;
}
input {
display: block;
width: 3rem;
}
table {
margin: 0 auto;
width: 80%;
height: calc(100% - (100px));
}
td {
width: 7rem;
height: 2.6rem;
}
@media screen and (max-width: 680px){
td {
height: 6rem;
}
}
.toolbar {
margin: 2rem auto;
display: block;
width: 70%;
border: 1px solid #000;
border-radius: 0.2rem;
height: 6rem;
padding-top: 0.5rem;
}
.toolbar h1 {
font-family: 'Josefin Slab', serif;
font-weight: 600;
float: left;
padding-left: 0.6rem;
user-select: none;
}
#clickedDisplay {
display: inline-block;
float: left;
margin: 0.8rem 1.5rem;
height: 4rem;
width: 5rem;
}
#colorInfo {
float:left;
margin-bottom: 0.8rem;
}
#userValues {
float:right;
margin-right: 2rem;
margin-bottom: 0.8rem;
}
.signature {
text-align: center;
}