-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (39 loc) · 788 Bytes
/
style.css
File metadata and controls
42 lines (39 loc) · 788 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
body{
background: #e9e0dd url("./images/zero_bg.jpg") no-repeat fixed center top;
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
text-align: center;
}
a{color: blue;}
a:hover{color: red;}
.divbox{
background-color:rgba(255, 255, 255, 0.6);
text-align: left;
margin-left: auto;
margin-right: auto;
border: 1px solid black;
padding: 20px;
width: 380px;
}
table{
background-color:rgba(255, 255, 255, 0.6);
text-align: left;
margin-top: 30px;
margin-left: auto;
margin-right: auto;
border-spacing: 0px;
border-collapse: collapse;
}
td, th{
border: 1px solid black;
padding: 5px;
}
@media screen and (max-width:640px) {
body{
background-size: 480px;
}
.divbox{
width: 85%;
}
}