-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
106 lines (89 loc) · 1.42 KB
/
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #3b3b4f;
color: #fff;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}
.logo {
margin-top: 30px;
}
h1 {
max-width: 400px;
text-align: center;
margin: 10px 0;
}
.mobile {
width: 250px;
height: 450px;
background-color: #fff;
border: 15px solid #000;
border-radius: 10px;
}
.camera {
width: 100%;
height: 20px;
background-color: #000;
text-align: center;
color: #fff;
vertical-align: baseline;
}
label {
color: #000;
display: block;
text-align: center;
margin: 10px 0;
font-size: 1rem;
}
input {
height: 40px;
width: 200px;
border-radius: 10px;
margin: 10px 10px;
font-size: 1rem;
border: 1px solid #000;
text-align: center;
}
.scroller {
width: 100%;
height: 250px;
color: #000;
text-align: center;
overflow: scroll;
}
.base {
width: 100%;
height: 60px;
position: relative;
background-color: #000;
text-align: center;
padding: 1px;
}
button {
width: 40%;
height: 80%;
font-size: 1.3rem;
cursor: pointer;
}
.results-text {
font-size: 1.2rem;
padding: 5px;
text-align: var(--center-text);
margin: 10px 0;
}
span {
background-color: #f0eaea;
border-radius: 46%;
border : 1xp solid rgb(223, 218, 219);
height: 10px;
width: 10px;
display: inline-block;
}