-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (51 loc) · 838 Bytes
/
style.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
#message_for {
overflow: hidden;
background-color: #DDD;
position: fixed;
bottom: 0;
width: 100%;
}
#svr-messages {
color: red;
}
.header {
background-color: #042037;
color: #ffffff;
padding: 15px;
#max-width: 90%;
}
[class*="box-"] {
width: 100%;
}
button {
background-color: #c0ffee;
color: darkslategray;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
img {
max-width: 100%;
max-height: 10%;
}
.bg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: url("test.jpg");
opacity: 0.5;
background-size: auto;
z-index: -1;
}
@media only screen and (min-width: 600px) {
/* For tablets: */
.header {
width: 100%;
}
}
@media only screen and (min-width: 768px) {
/* For desktop: */
.header {
width: 100%;
}
}