summaryrefslogtreecommitdiff
blob: cc823efffa2c7bf4566e2998dd2ef6228501c5ff (plain)
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
/* wrapper */
html, body, *{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-size: 100%;
    font: inherit;
    -webkit-font-smoothing: antialiased;
}

app-bar {
    position:relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom: 1px solid #a4a4a4;
    background-color:#f2f2f2;
    box-shadow: 0px 0px 7px rgba(164, 164, 164, 0.7);

    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;

    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

app-bar * {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
}


/* close container */
app-bar app-box.close{
    display:block;
    text-align:center;
}
app-bar app-box.close app-text{
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color:#797979;
}


/* icon container */
app-bar app-box.icon{
    display: block;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    border-radius: 20%;
    overflow: hidden;
    padding:1px;
}
app-bar app-box.icon app-icon{
    display: block;
    width:100%;
    height:100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    border-radius: 20%;
    border:1px solid #c9c7c6;
}


/* info container */
app-bar app-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    -moz-box-flex: 1;
    box-flex: 1;
    flex: 1 0 auto;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
app-bar app-info app-title{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000;
}
app-bar app-info app-link{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #373737;
}


/* open container */
app-bar app-box.open{
    display: block;
    text-align:center;
}
app-bar app-box.open app-text{
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #007aff;
}