-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (68 loc) · 1.32 KB
/
style.css
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
*{
margin: 0;
padding: 0;
outline: 0;
font-family: 'Open Sans', sans-serif;
}
body{
height: 100vh;
background-image: url(images/bogor.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
p {
color: white;
font-family: 'Open Sans', sans-serif;
padding-top: 10px;
}
h2 {
text-align: center;
padding-left: 8px;
padding-bottom: 20px;
}
a {
color: white;
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(0,0,0,.7);
box-shadow: 0 0 10px rgba(255,255,255,.3);
}
.container h1{
text-align: left;
color: #fafafa;
margin-bottom: 30px;
text-transform: uppercase;
border-bottom: 4px solid #752BEA;
}
.container label{
text-align: left;
color: #90caf9;
}
.container form input{
width: calc(100% - 20px);
padding: 8px 10px;
margin-bottom: 15px;
border: none;
background-color: transparent;
border-bottom: 2px solid #752BEA;
color: #fff;
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;
}