-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (40 loc) · 849 Bytes
/
Copy pathstyle.css
File metadata and controls
41 lines (40 loc) · 849 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
body{
font-family:'Times New Roman', Times, serif;
background-color:rgb(139, 172, 133);
margin: 0;
padding:0%;
display: flex;
justify-content:center;
align-items:center;
height: 600px;
}
.border{
background-color: antiquewhite;
border-radius: 10px;
box-shadow: 0px 10px rgba((0,0,0,0.1));
padding:30px;
width: 350px;
}
h2{
text-align: center;
color: black;
font-size: 30px;
}
input[type="text"], input[type="password"],button[type="submit"]{
width: 100%;
padding: 10px;
margin-top: 10px;
border: 1px solid #bdb4b4;
border-radius: 4px;
box-sizing: border-box;
}
button{
background-color: rgb(107, 165, 100);
color: antiquewhite;
border: none;
cursor: pointer;
font-size:18px;
}
button:hover{
background-color: rgb(78, 134, 63);
}