-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (43 loc) · 883 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (43 loc) · 883 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
#container{
text-align: center;
background-color: white;
padding: 50px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url(imagestack/bgm.jpg);
background-attachment: fixed;
background-size: 100% 100%;
overflow: hidden;
}
h2{
margin: 0px 0px 10px 0px;
}
input{
margin: 10px 0px;
width: 200px;
padding: 10px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="submit"]{
width: 222px;
border: 0px;
color: white;
background-color: #3688c7;
cursor: pointer;
}
input[type="submit"]:hover {
background-color:#2b6fae;
}
.error{
color: red;
margin: 0px;
text-align: left;
}