-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (84 loc) · 1.77 KB
/
style.css
File metadata and controls
105 lines (84 loc) · 1.77 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
* {
box-sizing: border-box;
font-family: 'Nunito', sans-serif;
}
html {
scroll-behavior: smooth;
}
[hidden] {
display: none !important;
}
.pdfView {
overflow: auto;
}
/* Background color for the whole page */
body {
background-image: linear-gradient(#191D23, #090B11);
background-size: cover;
}
/* Container for everything except demonstrative circle canvas */
#main-body {
margin: 100px;
padding: 30px;
}
/* Eye pointer overlay for demonstration purposes */
#circle {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* Circle will be rendered over the rest of the HTML elements */
z-index: 10;
/* The canvas can be clicked through, not interacted with */
pointer-events: none;
}
/* Welcome screen main text "Welcome back, [name]! */
h1 {
font-family: 'Nunito';
font-style: normal;
font-weight: 700;
font-size: 40px;
text-align: left;
color: #FFFFFF;
padding: 10px 10px 20px 10px;
}
/* Welcome text username color change */
#user {
color: #FCD8A6;
}
/* PDF / Book titles */
h4 {
text-align: left;
font-size: 18px;
color: #132329;
font-weight: 700;
padding: 20px 30px 20px 20px;
}
/* Panel displaying PDF / Books */
.card {
margin: 20px;
height: 160px;
border-radius: 10px;
background: linear-gradient(136.74deg, #C6A091 0%, #78949F 103.22%);
background-size: cover;
box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.75);
}
/* Used to control the responsiveness of individual panels */
.item {
width: 200px;
float: left;
}
.last-item {
width: 200px;
float: left;
}
#maincontainer {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
height: 100%;
}