-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (49 loc) · 876 Bytes
/
style.css
File metadata and controls
56 lines (49 loc) · 876 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
49
50
51
52
53
54
55
56
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Times New Roman';
}
body {
height: 100vh;
width: 100vw;
display: flex;
align-items: start;
justify-content: center;
background-color: black;
color: white;
}
.login-box {
border: 5px solid white;
height: auto;
width: 30rem;
text-align: center;
margin-top: 10vh;
padding: 1rem;
}
.login-box h1 {
font-size: 3rem;
}
.login-box hr {
margin: 1rem 0;
}
.inputs {
height: auto;
width: auto;
display: grid;
}
.inputs input {
outline: none;
height: auto;
width: auto;
font-size: 1rem;
padding: 0.5rem;
}
.login-box button {
height: auto;
width: auto;
font-size: 2rem;
margin-top: 1rem;
padding: 0.5rem 1rem;
cursor: pointer;
}