blob: e3ead198a9b86f64c4943ec0fcd21eed131b22b1 [file] [log] [blame]
beccabroek309b5da2018-11-07 12:22:31 -06001.certificate__table {
2 border-left: 1px solid $medgrey;
3 border-right: 1px solid $medgrey;
4 margin-top: .5em;
5 .table__row-header {
6 width: 100%;
7 border-bottom: 1px solid $medgrey;
8 background-color: $darkbg__primary;
9 color: $white;
10 font-weight: 700;
11 }
12 .table__row-value {
13 width: 100%;
14 border-bottom: 1px solid $medgrey;
15 }
16 .certificate__type-header {
17 @include mediaQuery(small) {
18 width: 25%;
19 background: transparent;
20 }
21 width: 100%;
22 padding: .8em;
23 padding-left: 1.5em;
24 }
25 .certificate__date-header {
26 padding:.8em;
27 @include mediaQuery(small) {
28 width: 30%;
29 display: block;
30 }
31 display: none;
32 }
33 .certificate__status-header {
34 padding: .8em;
35 @include mediaQuery(small) {
36 width: 5%;
37 display: block;
38 }
39 display: none;
40 }
41 .certificate__type-cell {
42 width: 100%;
43 padding: .8em .8em .8em 1.5em;
44 word-wrap: break-word;
45 background: $lightgrey;
46 @include mediaQuery(small) {
47 width: 25%;
48 background: transparent;
49 }
50 }
51 .certificate__date-cell {
52 padding: .8em ;
53 word-wrap: break-word;
54 @include mediaQuery(small) {
55 width: 30%;
56 }
57 width: 70%;
58 }
59 .certificate__status-cell {
60 padding: .8em;
61 @include mediaQuery(small) {
62 display: block;
63 width: 5%;
64 }
65 display: none;
66 }
67 .certificate__buttons-cell {
68 @include mediaQuery(small) {
69 width: 10%;
70 padding-top: .8em;
71 }
72 width: 100%;
73 text-align: right;
74 padding: 0 1.5em .8em 0;
75 }
76 .certificate__title-inline {
77 @include mediaQuery(small) {
78 display: none;
79 }
80 width: 30%;
81 display: block;
82 padding: .8em .8em .8em 1.5em;
83 }
84 .upload__certificate {
85 border-top: 1px solid $medgrey;
86 width: 100%;
87 background: $lightgrey;
88 padding: .8em;
89 }
90}
91.certificate__upload-chooser {
92 background: $lightgrey;
93}
94
95.add__certificate__modal {
96 select {
97 margin-bottom: 0;
98 }
99 .file__upload {
100 margin-bottom: 2em;
101 }
102 .select__new-label {
103 margin-bottom: 1em;
104 }
105 .select__new-button {
106 font-size: 1.2em;
107 }
108 .file__name {
109 background-color: $upload__background;
110 padding: .5em;
111 }
112}