-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
executable file
·114 lines (103 loc) · 2.51 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
/* The side navigation menu */
.sidenav {
height: 100%; /* 100% Full-height */
width: 350px; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
top: 50px;
right: -360px;
background-color: #eeeeee;
overflow-x: hidden; /* Disable horizontal scroll */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
z-index: 1020;
}
.sidenav .open {
box-shadow: 0 -10px 10px rgba(0,0,0,0.25);
}
.sidenav a {
padding: 2px 2px 2px 32px;
text-decoration: none;
font-size: 12px;
color: #818181;
display: block !important;
transition: 0.3s;
}
.sidenav a:hover, .sidenav a:focus {
color: #525c93 !important;
}
.sidenav .closebtn {
position: absolute;
top: 5px;:
right: 25px;
font-size: 24px;
margin-left: 50px;
color: #333333 !important;
text-decoration: none;
}
.help-center-main-heading {
padding: 10px;
text-align: center;
background-color: #dddddd;
color: #000000;
position: relative;
}
.help-center-main-heading h2 {
color: #000000;
margin: 0;
}
#helpbox {
position: fixed;
top: 50%;
right: 0;
width: 70px;
height: 30px;
padding: 5px;
transform: translate3d(50%,-50%,0) rotate(270deg) translateY(-50%);
text-align: center;
border-radius: 8px 8px 0 0;
transition: 0.5s;
z-index: 2;
box-shadow: -4px 0px 8px rgba(0,0,0,.4); /* coordinates are pre rotation */
}
/* LEC Chatbot initial stuff */
input#wisdom {
padding: 4px;
font-size: 1em;
width: 350px
}
input::placeholder {
color: #ccc;
font-style: italic;
}
p.userRequest {
margin: 4px;
padding: 4px 10px 4px 10px;
border-radius: 4px;
min-width: 50%;
max-width: 85%;
float: left;
background-color: #7d7;
}
p.lexResponse {
margin: 4px;
padding: 4px 10px 4px 10px;
border-radius: 4px;
text-align: right;
min-width: 50%;
max-width: 85%;
float: right;
background-color: #bbf;
font-style: italic;
}
p.lexError {
margin: 4px;
padding: 4px 10px 4px 10px;
border-radius: 4px;
text-align: right;
min-width: 50%;
max-width: 85%;
float: right;
background-color: #f77;
}
#searchresults .result-title a{
font-size: 30px;
}