-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (49 loc) · 974 Bytes
/
Copy pathstyle.css
File metadata and controls
56 lines (49 loc) · 974 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
body {
background-color: #2d2d2d;
color: #fff;
font-family: sans-serif;
}
#frm {
border: solid #444 1px;
border-radius: 10px;
width: 400px;
margin: 50px auto;
background: #1f1f1f;
padding: 40px;
box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}
#frm h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
}
#frm label {
display: block;
margin-bottom: 10px;
font-size: 16px;
}
#frm input[type="text"], #frm input[type="password"], #frm textarea {
border: solid #444 1px;
border-radius: 5px;
width: 100%;
padding: 10px;
font-size: 16px;
margin-bottom: 20px;
background-color: #2d2d2d;
color: #fff;
}
#frm textarea {
height: 100px;
}
#frm input[type="submit"] {
background: #555;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
padding: 10px 20px;
cursor: pointer;
}
#frm input[type="submit"]:hover {
background: #777;
}