-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (103 loc) · 1.74 KB
/
style.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
@charset "utf-8";
/* CSS Document */
.center {
text-align:center;
}
body {
margin-left:auto;
margin-right:auto;
margin-top:0%;
width: 90%;
}
.wrapper {
width:90%;
background-color:#F5F5F5;
margin-left:auto;
margin-right:auto;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-moz-box-shadow: 0 0 15px 7px #888;
-webkit-box-shadow: 0 0 15px 7px#888;
box-shadow: 0 0 15px 7px #888;
margin-top:1%;
margin-bottom:1%;
}
img.logo {
display: block;
margin-left:auto;
margin-right:auto;
}
h2.heading {
text-align: center;
}
h2.heading #green {
color: green;
background-color: transparent;
}
.LoginForm {
width:500px;
margin-left:auto;
margin-right:auto;
}
.LoginFormSubmit {
padding-left:14%;
}
.logo {
padding-top:15px;
padding-bottom:10px;
}
.error, .info {
text-align: center;
font-size: 1.2em;
color:#ED3237;
}
.error {
color:#ED3237;
}
.info {
color:#0000FF;
}
.questionsBody {
width: 660px;
margin-left:auto;
margin-right:auto;
}
.answer {
margin-bottom:15px;
margin-left: 17px;
}
.resultBody {
width:50%;
margin-left:auto;
margin-right:auto;
}
.IncorrectAnswer {
color:#C00;
}
.inc_ques {
margin-left:10px;
}
.corr_ans {
background: url("./images/green-tick.png") no-repeat scroll right transparent;
margin-bottom: 20px;
margin-left: 35px;
}
.inc_ans {
background: url("./images/red-cross.png") no-repeat scroll right transparent;
margin-left:35px;
}
.inc_ques_no {
color: #c00;
font-weight: bold;
}
.corr_ques_no {
color: blue;
font-weight: bold;
margin-right: 10px;
}
#endMessage {
text-align: center;
margin: 60px 0 20px;
font-weight: bold;
}