-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.06 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
* {
margin: 0;
}
main {
font-family: sans-serif;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
h1 {
background: linear-gradient(905deg, #50caff, #1673ba);
border-bottom: solid 2px #ccc;
color: white;
font-size: 3rem;
padding: 40px 0;
margin-bottom: 50px;
}
button {
background: #02bb70;
border: 0;
border-radius: 0 0 3px 3px;
box-shadow: 0 2px 5px #777, inset 0 -5px 4px -2px #1fe88f;
color: white;
cursor: pointer;
display: block;
font-size: 1.5rem;
font-weight: bold;
line-height: 50px;
margin: auto;
width: 100%;
-webkit-appearance: none;
}
p {
display: inline;
}
p, span {
font-size: 1.75rem;
line-height: 50px;
}
h1, #guess-result {
text-align: center;
}
.container {
display: flex;
justify-content: center;
gap: 20px;
}
.camera,
.output {
width: 320px;
}
.border {
border: solid 1px #ccc;
}
.instructions {
color: #135;
display: block;
line-height: 1.5;
margin: 40px auto;
max-width: 900px;
}