-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (54 loc) · 988 Bytes
/
styles.css
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
61
62
body{
padding:0;
margin-top:20px;
background-image:url("supermarket.jpg");
background-repeat:no-repeat;
background-position:center;
background-size:cover;
opacity:0.8;
}
#wrapper{
width:1000px;
height:600px;
background-color:#696969;
min-height:500px;
margin:0px auto;
border:2px solid #A9A9A9;
border-bottom:3px solid #A9A9A9;
border-radius:7px;
}
#formDiv{
margin:0px auto;
width:300px;
min-height:300px;
opacity:1.0;
margin-top:30px;
background-color:#FFFFF0;
padding:40px;
border:1px solid #708090;
border-radius:5px ;
}
#error{
width:1000px;
margin:20px;
text-decoration:underline;
}
#menu{
width:1000px;
height:55px;
margin:50px auto;
text-align:center;
background-color:#FFFAFA;
border:2px solid #808080;
border-radius:4px;
border-bottom:1px solid #666;
}
#menu a{
text-decoration:none;
display:inline-block;
color:#666;
margin-top:15px;
}
#menu a:hover{
color:#000000;
}