-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (71 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (71 loc) · 1.29 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
body{
background-color: #7AE2CF;
font-family: sans-serif;
}
.container{
margin-top: 10px;
margin-left: auto;
margin-right: auto;
width: 500px;
height: 400px;
background-color: #06202B;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
flex-direction: column;
border: 1px solid azure;
align-items: center;
}
input {
background: transparent;
border: none;
border-bottom: 2px solid grey;
color: white;
font-size: 16px;
padding: 8px 0;
width: 60%;
margin-left: 80px;
margin-bottom: 20px;
outline: none;
}
input:focus {
border-bottom: 2px solid #7AE2CF;
}
.para{
color: whitesmoke;
text-align: center;
font-size: 20px;
margin-top: 30px;
}
.user{
color: whitesmoke;
font-size: 20px;
margin-top: 30px;
margin-left: 80px;
}
.pass{
color: whitesmoke;
font-size: 20px;
margin-top: 30px;
margin-left: 80px;
}
.sign{
margin-left: 80px;
background-color: #077A7D;
color: white;
padding: 10px 20px;
border: none;
border-radius: 20px;
cursor: pointer;
font-size: 16px;
margin-top: 30px;
width: 60%;
}
.create{
margin-top: 30px;
margin-left: 150px;
}
a{
color: whitesmoke;
text-decoration: none;
font-size: 16px;
}