-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.css
97 lines (77 loc) · 1.31 KB
/
popup.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
html,
body {
font-family: "Open Sans", sans-serif;
font-size: 14px;
margin: 0;
min-height: 180px;
padding: 0;
width: 450px;
}
body::-webkit-scrollbar {
display: none;
}
ul {
list-style-type: none;
}
a {
text-decoration: none;
}
/* header start*/
#header-btn {
padding-bottom: 20px;
}
.btn {
color: white;
background-color: #000000;
border-radius: 4px;
border: none;
margin-right: 9px;
line-height: 1.6;
padding: .5em 2em;
font: 1em "Trebuchet MS",sans-serif;
float: left;
}
/* header end*/
#setuser_button {
float: right;
}
/* Questions section start */
.container {
padding: 20px;
}
/* #questions-block {
display: none;
} */
#problems-header {
text-align: center;
font: 16px Arial, Helvetica, sans-serif;
}
table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 94%;
margin-left: auto;
margin-right: auto;
text-decoration: none;
}
td, th {
border: 1px solid #ddd;
padding: 12px;
text-align: center;
}
tr:nth-child(even){
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
th {
padding-top: 15px;
padding-bottom: 15px;
background-color: #000000;
color: white;
}
.correct {
background-color: #d6f6ca;
}
/* Questions section end */