-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·60 lines (51 loc) · 794 Bytes
/
Copy pathstyle.css
File metadata and controls
executable file
·60 lines (51 loc) · 794 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
}
body {
background: url(/background);
display: flex;
justify-content: center;
align-items: center;
}
#container {
width: 70%;
border-style: solid;
border-color: black;
border-radius: 4px;
box-shadow: 4px 4px 2px 2px rgba(0, 0, 0, 0.3);
background: rgba(0, 0, 0, 0.5);
color: white;
text-align: center;
}
#title {
font-size: 30px;
}
#form {
margin: 25px;
display: flex;
justify-content: center;
align-items: center;
}
#form > input[type="text"] {
width: 100%;
}
#form-name {
padding: 10px;
height: 25px;
border: none;
}
#form-submit {
padding: 10px;
height: 45px;
border: none;
color: #ffffff;
font-size: 20px;
background: #5a6a75;
}
#form-submit:hover {
background: #3cb0fd;
}