-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (74 loc) · 1.19 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
* {
margin: 0;
padding: 0;
font-family: Georgia, 'Times New Roman', Times, serif;
color: #fff;
}
.verticle-align {
margin-top: 80px;
}
.book-data > button {
margin-left: 60px;
}
.book-data {
font-size: 30px;
color: #fff !important;
}
.book-data:hover {
color: rgb(61, 61, 61) !important;
}
.main-title {
font-size: 60px;
}
.sub-title {
font-size: 30px;
}
.background-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
transition: all 0.8s;
opacity: 0.7;
background: #000;
background-size: 100% 100%;
}
.background-image {
position: relative;
background-image: url(./background.jpeg);
background-size: cover;
background-repeat: no-repeat;
overflow-x: hidden;
height: 100vh;
}
.main-footer {
position: fixed;
bottom: 0;
width: 100%;
height: 60px;
background: rgb(48, 48, 48);
padding: 10px;
border-radius: 15px;
}
.list {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}
.h-p {
padding: 5px;
}
.show {
display: block;
}
.hidden {
display: none;
}
.background {
background: transparent;
}
#time {
font-family: 'Courier New', Courier, monospace;
font-weight: 800;
}