-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (118 loc) · 2.26 KB
/
styles.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
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css');
/* this is the background/parent div of the preloder*/
.preloader{
width:100%;
height:100%;
background-color: #3a7ab1;
position: fixed;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
/* the percentage shown in preloader*/
.preloader .status h1{
font-size: 3000%;
font-weight: bold;
color: #FFFFFF;
top:50%;
left: 50%;
position:fixed;
transform: translate(-50%,-50%);
}
/* the navbar parent div*/
#navbar {
background-color: #FFFFFF;
}
/* Objects inside the navbar*/
.navbar-objects{
color:#0d6efd;
font-family:Cursive;
font-weight: bold;
}
/* the glyphicons in the navbar*/
.icon{
color:#0d6efd;
}
/* on hover in the navbar tabs*/
.li-navbar:hover{
background-color: #0d6efd;
}
.li-navbar:hover span{
color:white;
}
/* the homw page*/
#home-background{
background-image: url(home-background.jpg);
width: 100%;
height:100vh;
text-align:center;
position: relative;
float: none;
}
/* just to hide everything during preloader animation*/
.everything{
visibility: hidden;
}
/* Hi, there*/
#home-header{
overflow:hidden;
color:White;
font-size:700%;
display: none;
}
/* welcome to websitename */
#home-h2{
transform: translate(0%, -50%);
color:white;
display: none;
}
/* the div indicating to scroll down to view more*/
.scroll-down {
color:white;
font-size: larger;
position:absolute;
bottom: 15%;
text-align: center;
left:43%;
}
/*parent class in the reader*/
.reader{
height: 100vh;
width: 100%;
position:relative;
padding-left: 5%;
padding-right: 5%;
padding-top: 3%;
font-family: sans-serif;
}
/* the tabs in the reader*/
.Reader-tabs{
color:#FFFFFF;
}
#text-i,#pdf-i{
background-color: #ECECEC;
border-radius: 10px;
}
/* radio button to input gender*/
#gender-input1{
margin-top: 1%;
}
/*submit buttons in reader for text input and pdf input*/
.btn-t,.btn-p{
width:100%;
background-color: #0d6efd;
color:#FFFFFF;
}
/* the input file button that will be visible to the user*/
#stylefileinput{
background-color: gray;
color: white;
padding: 0.5rem;
font-family: sans-serif;
border-radius: 0.3rem;
cursor: pointer;
margin-top: 1rem;
width: 100%;
text-align: center;
}