-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (130 loc) · 2.76 KB
/
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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
#main{
left:50%;
right:50%;
margin-left: 20%;
margin-right: 20%;
}
h1 {
color: #111;
font-family: 'Helvetica Neue', sans-serif;
font-size: 275px;
font-weight: bold;
letter-spacing: -1px;
line-height: 1;
text-align: center;
}
h2 {
color: #111;
font-family: 'Open Sans', sans-serif;
font-size: 30px;
font-weight: 300;
line-height: 32px;
margin: 0 0 16px;
text-align: center;
}
p {
color: #685206;
font-family: 'Helvetica Neue', sans-serif;
text-align: justify;
text-justify: inter-word;
}
#chapters
{
display: flex;
box-shadow: 1px 1px 4px #dddddd;
}
#chapters p{
flex-basis: 33%;
padding: .7rem;
align-self: flex-end;
}
/**********************************************/
/**********************************************/
/**********************************************/
/**********************************************/
.container {
display: flex;
}
.waviy {
background-color: #151719;
position: relative;
/*-webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, .2));*/
font-size: 60px;
}
.waviy span {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
position: relative;
display: inline-block;
color: #fff;
text-transform: uppercase;
animation: waviy 1s infinite;
animation-delay: calc(.1s * var(--i));
}
span#letter1{
--i:1;
}
span#letter2{
--i:2;
}
span#letter3{
--i:3;
}
span#letter4{
--i:4;
}
span#letter5{
--i:5;
}
span#letter6{
--i:6;
}
@keyframes waviy {
0%,
40%,
100% {
transform: translateY(0)
}
20% {
transform: translateY(-20px)
}
}
/**********************************************/
/**********************************************/
/**********************************************/
/**********************************************/
.beauty-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
width:100%;
}
.beauty-table tr.head {
background-color: #009879;
color: #ffffff;
text-align: left;
}
.beauty-table th,
.beauty-table td {
padding: 12px 15px;
}
.beauty-table tr {
border-bottom: 1px solid #dddddd;
}
.beauty-table tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.beauty-table tr:last-of-type {
border-bottom: 2px solid #009879;
}
.beauty-table tr.active-row {
font-weight: bold;
color: #009879;
}