-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbanner.css
95 lines (86 loc) · 1.82 KB
/
banner.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#bannierManga {
max-width: 1024px;
height: 250px;
position: relative;
}
#bannierManga img {
max-height: 250px;
}
#accroche {
position: absolute;
top: 37%;
left: -20px;
;
-ms-transform: rotate(354deg);
/* IE 9 */
-webkit-transform: rotate(354deg);
/* Chrome, Safari, Opera */
transform: rotate(354deg);
background-color: rgb(172, 26, 29);
width: 1070px;
height: 70px;
font-size: 40px;
color: white;
text-align: center;
line-height: 70px;
}
#crypted-message{
position : absolute;
top : 65%;
left : 440px;
color : #AC1A1D;
font-size: 20px;
font-weight : bolder;
width : 55%;
text-align : center;
}
/* IE10+ specific styles go here */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#accroche {
font-size: 20px;
}
}
@media (max-width: 780px) {
/*Banner*/
#bannierManga {
max-width: 100% !important;
height: auto !important;
}
#bannierManga img {
max-width: 100% !important;
height: auto !important;
}
#accroche {
position: static;
-ms-transform: none;
/* IE 9 */
-webkit-transform: none;
/* Chrome, Safari, Opera */
transform: none;
background-color: rgb(172, 26, 29);
max-width: 100%;
height: 40px;
font-size: 18px;
color: white;
text-align: center;
line-height: 40px;
}
#crypted-message{
position : absolute;
top : 20%;
left : 20%;
font-size : 25px;
font-weight : bolder;
width : 75%;
text-align : center;
}
}
/* 640px */
@media (max-width: 640px) {
#crypted-message{
position : absolute;
font-size : 16px;
top : 5%;
right : 5%;
}
}