-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (104 loc) · 1.59 KB
/
style.css
File metadata and controls
120 lines (104 loc) · 1.59 KB
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
* {
padding: 0;
margin: 0;
scroll-behavior: smooth;
font-family: "Roboto", sans-serif;
}
.wrapper {
display: flex;
justify-content: space-between;
width: 100%;
height: 100vh;
position: fixed;
z-index: 999;
}
.left-side {
margin: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 45%;
}
.logo {
width: 260px;
}
.context {
width: 320px;
height: 227px;
}
.about {
margin-bottom: 10px;
word-spacing: 3px;
line-height: 25px;
}
.copyright {
margin-bottom: 33px;
}
#policy {
font-size: 20px;
font-weight: 800;
text-decoration: none;
}
.right-side {
margin: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.email {
font-size: 18px;
}
.email:hover {
text-decoration: underline;
}
.books {
text-align: right;
}
.books > li:hover {
text-decoration: underline;
}
.books > li {
list-style: none;
font-size: 20px;
margin: 5px;
}
/*------------main------------*/
html {
overflow: auto;
scroll-snap-type: both mandatory;
}
::-webkit-scrollbar {
width: 0px;
background: transparent;
}
.main {
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-evenly;
transition: background-color 800ms ease 0s;
}
.backpage {
width: 100%;
height: 100vh;
position: relative;
scroll-snap-align: center;
scroll-snap-stop: always;
}
.issue {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.backpage img {
width: 420px;
height: 532px;
}
a {
color: black;
text-decoration: none;
}
.bold {
font-weight: 800;
}