-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (40 loc) · 686 Bytes
/
style.css
File metadata and controls
40 lines (40 loc) · 686 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
body {
width: 100%;
height: 100%;
font-family: cursive;
}
.bgimg {
display: block;
margin-top: 90px;
padding: 100px;
text-align: center;
background: url(first.jpg) no-repeat center;
z-index: -1;
}
.sign_in {
display: block;
width: 153px;
height: 65px;
margin: auto;
margin-top: 95px;
border-width: 0;
background-image: url(signInButton.jpg);
}
.sign_up {
display: block;
width: 153px;
height: 65px;
margin: auto;
margin-top: 10px;
border-width: 0;
background-image: url(signUpButton.jpg);
}
.sign_in:hover {
background-image: url(signInHover.jpg);
}
.sign_up:hover {
background-image: url(signUpHover.jpg);
}
a{
background: yellow;
}