-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
121 lines (115 loc) · 2 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
* {
padding:0;
box-sizing: border-box;
font-family: 'Rubik', sans-serif;
}
body {
background: linear-gradient(80deg, #f8f7f7 50%, #c9c9e8 50%);
margin: 0;
height: 100%;
}
.firstContainer{
margin: 0 auto;
margin-top:180px;
width: 56em;
background-color: #ffffff;
padding: 50px 40px;
border-radius: 5px;
box-shadow: 0 20px 35px rgba(60, 60, 60, 0.2);
}
.container {
margin: 0 auto;
margin-top:100px;
width: 56em;
background-color: #c9c9d4;
padding: 50px 40px;
border-radius: 5px;
box-shadow: 0 20px 35px rgba(60, 60, 60, 0.2);
}
.wrapper{
display: flex;
justify-content: space-between;
}
.wrapper input{
width: 60%;
padding: 10px 7px;
border-radius: 3px;
border: 1px solid #201d2e;
}
.wrapper button{
width: 30%;
background-color: #201d2e;
border: none;
outline: none;
cursor: pointer;
color: #f1e9e9ff;
border-radius: 3px;
}
.container p{
line-height: 35px;
text-align: justify;
margin-top: 30px;
}
mark{
background-color: #ffdd4b;
}
a {
text-decoration: none;
}
a:hover {
color: #f6efef;
transition: all 0.7s;
}
.header {
border-radius: 10px;
padding: 20px 160px;
background: 555;
color: f1f1f1;
background-color: #ffffff;
}
.content {
padding: 16px;
}
.sticky{
position: sticky;
top: 0;
width: 100%;
}
.sticky + .content {
padding-top: 102px;
}
.home-button {
width: 30%;
background-color: #201d2e;
border: none;
outline: none;
cursor: pointer;
color: #f4f0f0ff;
border-radius: 4px;
}
.bookmark-button {
width: 30%;
background-color: #000000;
border: none;
outline: none;
cursor: pointer;
color: #ffffffff;
border-radius: 3px;
}
.previous {
cursor: pointer;
background-color: #0a0a0a;
color: white;
margin-left: 190px;
}
.next {
margin-left: 279px;
cursor: pointer;
background-color: #0d0d0d;
border-radius: 5%;
color: white;
}
.pageNumber {
text-align: center;
margin-bottom: -5px;
}