-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
164 lines (130 loc) · 4.15 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
Parent Progress View, a module for Moodle to allow the viewing of documents and pupil data by authorised parents.
Copyright (C) 2016-17 Test Valley School.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
.path-admin-report-parentprogressview article.available-document {
border: 1px solid #e3e3e3;
border-radius: 1px 1px 1px 1px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
display: inline-block;
min-height: 80px;
margin: 20px;
padding: 10px;
border-collapse: collapse;
background-image: linear-gradient(to bottom, #fffee6, #fffbd4);
background-color: #f8f1ff;
}
.path-admin-report-parentprogressview #region-main {
background-color: #fff;
border: 1px solid #e3e3e3;
border-radius: 1px 1px 1px 1px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
width: 100%;
}
.path-admin-report-parentprogressview div[role="main"] {
padding: 20px;
}
.path-admin-report-parentprogressview h2, .path-admin-report-parentprogressview h3 {
}
.path-admin-report-parentprogressview h3 {
border-bottom: 1px solid #e3e3e3;
}
.path-admin-report-parentprogressview article.available-document .thumbnail img {
max-width: 100%;
border: 1px solid #e3e3e3;
}
.path-admin-report-parentprogressview article.available-document .document-download {
font-size: 3em;
padding: 15px;
}
@media all and (min-width: 490px) {
.path-admin-report-parentprogressview article.available-document .thumbnail img {
max-width: 400px;
}
}
.path-admin-report-parentprogressview article.available-document .thumbnail {
text-align: center;
border: 0;
border-radius: 0;
box-shadow: none;
}
.path-admin-report-parentprogressview aside.show-documents-published-form {
float: right;
padding: 5px 20px;
border: 1px solid #e3e3e3;
border-radius: 1px 1px 1px 1px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
background-color: #f3f3f3;
}
.path-admin-report-parentprogressview aside.show-documents-published-form fieldset {
}
.path-admin-report-parentprogressview .document-meta {
color: rgb(96, 96, 96);
}
.path-admin-report-parentprogressview .center {
text-align: center;
}
.path-admin-report-parentprogressview .filename {
font-size: 80%;
}
.path-admin-report-parentprogressview .meta-item {
font-weight: normal;
}
.path-admin-report-parentprogressview .adminwarning {
margin: auto;
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #8a6d3b;
width: 60%;
min-width: 220px;
}
.path-admin-report-parentprogressview div.statistics {
display: table;
table-layout: fixed;
}
.path-admin-report-parentprogressview aside.statistic {
float: left;
display: table-cell;
overflow: hidden;
width: 200px;
padding: 20px;
}
.path-admin-report-parentprogressview aside.statistic > p {
text-align: center;
height: 50px;
}
.path-admin-report-parentprogressview aside.statistic > h4 {
font-size: 250%;
text-align: center;
}
.path-admin-report-parentprogressview .no-risk {
background-color: #60ea8e;
}
.path-admin-report-parentprogressview .risk-of-underachievement {
background-color: #f7fc9c;
}
.path-admin-report-parentprogressview .serious-risk-of-underachievement {
background-color: #fcd388;
}
.path-admin-report-parentprogressview .extreme-risk {
background-color: #fcb09f;
}
.path-admin-report-parentprogressview .severe-risk-of-extreme-risk {
background-color: #fcc09f;
}