-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
86 lines (74 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
a {
text-decoration: none;
display: inline-block;
padding: 4px 6px;
color: #fff;
margin: 0.1rem;
cursor: pointer;
}
a:hover,
.zoom:hover {
background-color: #ddd;
color: #0075f2;
opacity: 0.8;
}
.navigation {
background-color: #bbb;
color: #000;
padding: 0.3rem;
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
}
.navigation__item {
margin: 0.7rem;
}
.previous {
background-color: #f1f1f1;
color: black;
}
.next {
background-color: #4a8fed;
color: white;
}
.round {
border-radius: 50%;
}
.canvas__container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 0 auto;
}
.zoom {
color: #005bac;
outline: #fff;
border: 1px solid #005bac;
border-radius: 50%;
padding: 12px 12px;
text-align: center;
transition: all 0.3s ease;
font-size: 1rem;
}
input[type='number'] {
-moz-appearance: textfield;
appearance: textfield;
margin: 0;
text-align: center;
width: 20%;
height: 2rem;
font-size: 1rem;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}