-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprototype.css
More file actions
56 lines (52 loc) · 928 Bytes
/
prototype.css
File metadata and controls
56 lines (52 loc) · 928 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-image: url("pic.jfif");
background-attachment: fixed;
background-position: center;
}
.intro{
color: black;
text-align: center;
}
.details a{
color: blue;
}
.details{
color: black;
text-align: center;
margin-top: 100px;
margin-left: 50px;
margin-right: 50px;
margin-bottom: 50px;
padding-top: 10px;
padding-right: 50px;
padding-left: 50px;
font-size: 18px;
border: 5px solid white;
opacity: 0.8;
filter: alpha(opacity=60);
background-color: white;
width:320px;
top: 10%;
left: 35%;
position: absolute;
}
input[type=text],input[type=password]{
border: none;
border-bottom: 1px solid black;
background: transparent;
outline: none;
}
input[type=submit],input[type=reset]{
background-color: green;
cursor: pointer;
border:none;
color: white;
border-radius: 20px;
}
::placeholder{
color: black;
opacity: 0.3;
}
.Login{
margin-bottom: 10%;
}