-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (63 loc) · 1.1 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (63 loc) · 1.1 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
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/bg-img.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
font-family: 'Open Sans', sans-serif;
}
form {
width: 300px;
background: #222;
padding: 20px 20px;
box-shadow: 0 0 15px 25px rgba(0,0,0,.2);
border-radius: 5px;
}
h1 {
margin: 10px 0;
color: #fff;
}
input {
margin-top: 10px;
border: none;
border-radius: 5px;
width: 100%;
padding: 10px 15px;
background: #000;
font-size: 16px;
color: #fff;
}
.btn {
cursor: pointer;
background: #663399;
color: #fff;
font-size: 16px;
}
.data {
text-align: center;
}
.reset {
cursor: pointer;
color: #fff;
}
.output {
font-size: 24px;
}
p {
color: #fff;
font-size: 14px;
margin: 20px 5px 10px 0;
}
span {
margin-left: 5px;
}