-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (56 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (56 loc) · 1.02 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
body {
font-family: Arial, sans-serif;
padding: 20px;
/* background-color: #1b263b; */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
form {
max-width: 400px;
margin: auto;
padding: 20px;
border: 1px solid gray;
border-radius: 10px;
box-sizing: border-box;
background-color: lightgrey;
box-shadow: 0 0 10px black;
h2 {
text-align: center;
font-size:xx-large;
color: white;
}
label {
display: block;
margin: 10px 0px 5px 0px;
}
input {
width: 92%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid red;
border-radius: 5px;
transition: all 0.3s ease;
box-shadow: 0 0 5px black;
outline: none;
}
button {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid darkgrey;
border-radius: 5px;
background-color: darkred;
color: white;
font-size: 16px;
}
p {
text-align: center;
color: white;
font-weight: bold;
a {
color:darkblue ;
}
}
}