-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2ETabloid.css
133 lines (113 loc) · 2.31 KB
/
2ETabloid.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
@-webkit-keyframes example {
0% {color: red;}
25% {color: yellow;}
50% {color: blue;}
75% {color: green;}
100% {color: red;}
}
/* Standard syntax */
@keyframes example {
0% {color: red;}
25% {color: yellow;}
50% {color: blue;}
75% {color: green;}
100% {color: red;}
}
#overlayText {
width: 100px;
height: 100px;
color: red;
font-family: "Comic Sans MS", cursive, sans-serif;
font-weight: 900;
font-size: 600%;
-webkit-animation-name: example; /* Chrome, Safari, Opera */
-webkit-animation-iteration-count:infinite;
-webkit-animation-duration: 4s; /* Chrome, Safari, Opera */
animation-name: example;
animation-duration: 4s;
position:absolute;
z-index:12;
top:30%;
left:0;
width:100%;
text-align:center;
}
.tales {
width: 100%;
}
.carousel-inner{
width:100%;
margin-top: 90px;
position: relative;
max-height: 700px;
z-index: 10;
}
.carousel-inner > .item > img {
margin: 0 auto;
}
body {
padding-bottom: 40px;
color: #5a5a5a;
}
.overlay {
color:#fff;
position:absolute;
z-index:12;
top:30%;
left:0;
width:20%;
margin-left: 760px;
text-align:center;
}
/* CUSTOMIZE THE NAVBAR
-------------------------------------------------- */
/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
position: relative;
top: 0;
left: 0;
right: 0;
z-index: 20;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 768px) {
/* Navbar positioning foo */
.navbar-wrapper {
margin-top: 20px;
margin-bottom: -90px; /* Negative margin to pull up carousel. 90px is roughly margins and height of navbar. */
}
/* The navbar becomes detached from the top, so we round the corners */
.navbar-wrapper .navbar {
border-radius: 4px;
}
/* Bump up size of carousel content */
.carousel-caption p {
margin-bottom: 20px;
font-size: 21px;
line-height: 1.4;
}
}
#issueDiv {
width: 20%;
margin-left: 760px;
text-align:center;
display: table;
}
.Issues {
font-size: 3em;
background: none;
border: none;
display: ;
}
.modal-dialog,
.modal-content {
/* 80% of window height */
height: 100%;
margin-left: 167px;
width: 80%;
}
.modal-body {
width: 100%;
height: 87%;
}