-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·121 lines (106 loc) · 1.93 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
/* Update this file with your styling rules. */
body {
background-color: #bad4ff;
}
.center {
margin: auto;
width: 60%;
border: 3px solid #73AD21;
padding: 10px;
background-color: #b1f29f;
}
.button {
background-color: gray;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
margin-top: 20px;
}
.loader {
margin: 30px;
display: none;
border: 16px solid #fff; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.flex-container {
display: -webkit-flex; /* Safari */
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.exam-item {
margin: auto;
width: 60%;
border: 3px solid #73AD21;
}
.left {
width: auto;
text-align: left;
display: inline-block;
}
.right {
width: auto;
text-align: right;
display: inline-block;
}
.table-row {
border: 3px solid #73AD21;
display: flex;
flex-direction: row;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
width: 60%;
padding: 10px;
margin: auto;
margin-top: 15px;
background-color: #b1f29f;
}
.table-row-no-border {
display: flex;
flex-direction: row;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
width: 60%;
padding: 10px;
margin: auto;
margin-top: 15px;
}
.text {
flex-grow: 1;
-webkit-flex-grow: 1;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding-right: 20px;
}
.text {
width: 180px;
}
.container-fluid {
margin: auto;
}
.inline {
display: inline-block;
padding: 5px;
}
.sort-by {
display: inline-block;
padding-top: 20px;
}
.leftTextAlign {
text-align: left;
}