This repository was archived by the owner on May 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
112 lines (98 loc) · 2.05 KB
/
index.css
File metadata and controls
112 lines (98 loc) · 2.05 KB
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
107
108
109
110
111
112
/*
* Copyright 2025 Tushar Kumar Sahu
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
* {
box-sizing: border-box;
line-height: 1.4;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
text-align: center;
}
body {
background: linear-gradient(115deg, #020016c4, #000320bd);
color: #fefefe;
margin: 0px;
padding: 30px 20px;
}
#logo {
width: 120px;
}
h1 {
text-align: center;
width: 450px;
margin: 10px auto;
padding: 5px;
max-width: 100%;
}
#phone-container {
background-color: #030303;
border: 10px solid #030303;
width: 280px;
max-width: 90%;
margin: 10px auto;
border-radius: 10px;
}
#phone-header {
width: 100%;
margin: 0px;
padding: 10px;
text-align: center;
}
#phone-camera {
height: 10px;
width: 10px;
margin: auto;
border-radius: 50%;
background-color: #dddada;
}
#phone-screen {
padding: 12px;
margin: 0px;
background-color: #f3f3f3;
color: #030303;
}
#results-div {
height: 320px;
text-align: center;
margin: 0px;
padding: 10px 5px;
overflow-wrap: break-word;
font-size: 1.3rem;
overflow: auto;
}
#user-input {
display: block;
margin: 5px auto;
height: 40px;
width: 90%;
border-radius: 8px;
font-size: 1.3rem;
}
#phone-footer {
width: 100%;
margin: 0px;
padding: 10px;
text-align: center;
}
#phone-footer button {
height: 30px;
width: 45%;
font-size: 1.1rem;
}
.valid{
color: #034101;
}
.invalid{
color: #520202bd;
}