-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (66 loc) · 1.28 KB
/
style.css
File metadata and controls
69 lines (66 loc) · 1.28 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
*{
margin: 0;
padding: 0;
outline: 0;
font-family: 'Open Sans', sans-serif;
}
body{
height: 100vh;
background-color: #242424;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
p {
color: rgb(26, 25, 25);
font-family: 'Open Sans', sans-serif;
padding-top: 10px;
}
h1 {
text-align: center;
padding-bottom: 20px;
}
a {
color: #752BEA;
font-family: 'Open Sans', sans-serif;
}
.container{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
padding: 20px 25px;
width: 300px;
background-color: rgba(255, 255, 255, .9);
box-shadow: 0 0 10px rgba(255,255,255,.3);
}
.container h1{
text-align: left;
color: #1d1d1d;
margin-bottom: 30px;
border-bottom: 5px solid#1d1d1d;
}
.container label{
text-align: left;
color: #1d1d1d;
}
.container form input{
width: calc(100% - 20px);
padding: 8px 10px;
margin-bottom: 15px;
border: none;
background-color: transparent;
border-bottom: 1px solid #1d1d1d;
color: #1d1d1d;
font-size: 20px;
}
.container form button{
width: 100%;
height: 40px;
padding: 5px 0;
border: none;
background-color:#752BEA;
font-size: 18px;
color: #fafafa;
border-radius: 20px;
}