-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMVT_CSS.css
More file actions
72 lines (63 loc) · 1.67 KB
/
Copy pathMVT_CSS.css
File metadata and controls
72 lines (63 loc) · 1.67 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
/**
* @fileoverview Mooney Face Test (MVT) CSS Styles
*
* This CSS file provides styling for the Mooney Face Test implementation.
* Includes styles for layout, buttons, images, and information areas.
*
* @author Robert Schierz & Dr. Ludwig Ohse
* @version 1.0.0
* @since 2024
*/
/* Center all headings */
h1, h2, h3, h4, h5 { text-align: center }
/* Center control labels for note items */
form.form-horizontal div.form-group.form-row.item-note.label_align_center div.control-label,
form.form-horizontal div.form-group.form-row.item-note_iframe.label_align_center div.control-label {
text-align: center!important;
}
/* Center form controls and textareas */
.label_align_center .form-control, .label_align_center textarea {
margin-left: auto;
margin-right: auto;
}
/* Center all images */
img {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Button styling with gradient effect */
.buttondesign {
box-shadow:inset 0px 1px 0px 0px #ffffff;
background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
background-color:#ffffff;
border-radius:6px;
border:1px solid #999999;
display:inline-block;
cursor:pointer;
color:#666666;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
width: 200px;
}
/* Button hover effect */
.buttondesign:hover {
background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
background-color:#f6f6f6;
}
/* Button active/pressed effect */
.buttondesign:active {
position:relative;
top:1px;
}
/* First information area - initially hidden */
#infodesign01{
margin-top:20px;
display:none;
}
/* Second information area - initially hidden */
#infodesign02{
margin-top:20px;
display:none;
}