-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
48 lines (44 loc) · 843 Bytes
/
Style.css
File metadata and controls
48 lines (44 loc) · 843 Bytes
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
body {
background: #1b1b1b;
color: #cecece;
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
form {
width: 300px;
height: fit-content;
display: block;
text-align: center;
}
input[type="text"] {
width: 200px;
outline: none;
padding: 7px 5px 7px 5px;
border: 2px solid #cecece;
background: none;
margin: 5px;
border-radius: 5px;
color: #cecece;
text-align: center;
}
input[type="text"]:focus {
border: 2px solid cyan;
outline: none;
text-align: center;
}
input[type="button"] {
width: 215px;
padding: 7px 5px 7px 5px;
background: #0084ff;
outline: none;
border: none;
border-radius: 3px;
color: white;
cursor: pointer;
}