-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaqa-styles.html
53 lines (45 loc) · 1.08 KB
/
aqa-styles.html
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
<link rel="import" href="../polymer/polymer-element.html">
<link rel="import" href="../aqa-font/aqa-trirong-font.html">
<link rel="import" href="./flexbox-grid.html">
<dom-module id="aqa-styles">
<template>
<style include="flexbox-grid">
paper-checkbox,
paper-radio-button {
font-family: TrirongLight;
}
.page-container {
padding: 15px;
}
* {
font-family: TrirongRegular;
}
.font-MitrLight {
font-family: MitrLight;
}
div[main-title] {
font-family: MitrLight;
}
div.header {
font-family: MitrLight;
}
.modal-body {
position: relative;
-webkit-box-flex: 1;
flex: 1 1 auto;
padding: 1rem;
max-height: 400px;
overflow-y: auto;
}
.modal-footer {
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: end;
justify-content: flex-end;
padding: 1rem;
border-top: 1px solid #e9ecef;
}
</style>
</template>
</dom-module>