-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
97 lines (86 loc) · 1.84 KB
/
main.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
/*
Copyright @itsN1X 2016.
File: "main.css"
DirNo: "7364"
*/
body {
box-shadow: 10px 10px 200px rgba(170, 180, 190, 0.96);
color: navy;
font-family: "Roboto", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: auto auto auto;
max-width: 800px;
padding-top: 100px; /* fixed navbar xxx tall */
padding-bottom: 20px;
}
.navbar
{
height: 100px; /* navbar >>> Hgt */
background: rgb(60,60,60);
font-family: Helvetica, Arial, Tahoma, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
color: #2f0000;
font-weight: 600;
line-height: 1.3;
}
h2 {
margin-top: 1.3em;
}
a {
color: palegreen;
}
{ box-sizing: border-box; }
body { font-family: sans-serif; }
.carousel {
background: #FAFAFA;
position: relative;
}
.carousel-cell {
width: 65%;
height: 200px;
margin-right: 10px;
background: #8C8;
border-radius: 5px;
counter-increment: carousel-cell;
}
/* cell number */
.carousel-cell:before {
display: block;
text-align: center;
content: counter(carousel-cell);
line-height: 200px;
font-size: 80px;
color: white;
}
.static-banner {
position: absolute;
background: hsla(0, 0%, 0%, 0.3);
z-index: 1;
padding: 2px 20px;
font-size: 26px;
color: white;
pointer-events: none;
}
.static-banner1 {
left: 10px;
top: 10px;
}
.static-banner2 {
right: 10px;
bottom: 10px;
}
b, strong {
font-weight: 600;
}
img {
-webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
background: transparent;
border: 10px solid rgba(0, 0, 0, 0.12);
border-radius: 4px;
display: block;
margin: 1.3em auto;
max-width: 95%;
}