-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (109 loc) · 1.71 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
122
123
/*
Background #f45844
*/
*{
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
/* >>>>---- HELPERS ----*/
.center-align, .center-align-absolute{
margin-left: auto;
margin-right: auto;
}
.center-align-absolute{
left: 0;
right: 0;
}
.center-text{
text-align: center;
}
.padding-sm{
padding: 1em;
}
.box-radius{
border-radius: 5px;
}
.not-visible{
/* visibility: hidden;*/
opacity: 0;
-webkit-transition:opacity 1s linear;
}
.is-visible{
visibility: visible;
opacity: 1;
}
/* ---- HELPERS ----<<<<*/
body, html {
width: 100%;
height: 100%;
background: #f45844;
overflow: hidden;
}
h2 {
margin-top: 0.5em;
font-size: 2em;
font-family: mononoki;
color: #FFF;
}
#first-page {
height: 100%;
}
.txt-search {
width: 80%;
display: block;
margin: 1em auto;
border-radius: 5px;
font-size: 2em;
}
button {
background: #A34142;
color: #FFF;
font-size: 1.8em;
padding: 0.2em 1em;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:focus {
outline: 0;
}
button:hover {
opacity: 0.9;
}
#second-page {
height: 100%;
width: 100%;
}
.bt-up {
position: relative;
margin-left: 80%;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.list-layout {
height: 60%;
width: 90%;
overflow: auto;
margin-bottom: 0.6em;
}
.process-list {
color: #FFF;
font-size: 1.5em;
font-family: mononoki;
text-align: left;
margin-left: 1em;
}
/*Flashmessge*/
.flashmessage{
position: absolute;
bottom: 4em;
width: 80%;
background: #fff;
border-top: 0.4em solid #04193F;
z-index: 99999;
}
.flashmessage>p{
padding: 1em;
}
/*Flashmessge*/