Projekt

Obecné

Profil

Stáhnout (1.86 KB) Statistiky
| Větev: | Tag: | Revize:
1
html, body {
2
    min-height: 100%;
3
}
4

    
5
body {
6
background-repeat: no-repeat;
7
background-attachment: fixed;
8
background: #085078;  /* fallback for old browsers */
9
background: -webkit-linear-gradient(to bottom, #85D8CE, #085078);  /* Chrome 10-25, Safari 5.1-6 */
10
background: linear-gradient(to bottom, #85D8CE, #085078); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
11
}
12

    
13
.filtering-box {
14
    background-color: ghostwhite;
15
}
16

    
17
[v-cloak] {
18
  display: none;
19
}
20

    
21
.certificate-control {
22
    width: 105px;
23
    display: block;
24
    text-align: center;
25
}
26

    
27
.w-65 {
28
    max-width: 65%;
29
}
30

    
31
.w-35 {
32
    max-width: 35%;
33
}
34

    
35
.caret-top::before {
36
    font-family: sans-serif;
37
    cursor: pointer;
38
    -webkit-user-select: none; /* Safari 3.1+ */
39
    -moz-user-select: none; /* Firefox 2+ */
40
    -ms-user-select: none; /* IE 10+ */
41
    user-select: none;
42
    content: "\25B6";
43
    display: inline-block;
44
    margin-right: 6px;
45
    -ms-transform: rotate(270deg); /* IE 9 */
46
    -webkit-transform: rotate(270deg); /* Safari */'
47
    transform: rotate(270deg);
48
}
49

    
50
.caret-left::before {
51
    font-family: sans-serif;
52
    cursor: pointer;
53
    -webkit-user-select: none; /* Safari 3.1+ */
54
    -moz-user-select: none; /* Firefox 2+ */
55
    -ms-user-select: none; /* IE 10+ */
56
    user-select: none;
57
    content: "\25B6";
58
    display: inline-block;
59
    margin-right: 6px;
60
    -ms-transform: rotate(180deg); /* IE 9 */
61
    -webkit-transform: rotate(180deg); /* Safari */'
62
    transform: rotate(180deg);
63
}
64

    
65
/*404 page*/
66
#404_page{
67
    display: table;
68
    width: 100%;
69
    height: 100vh;
70
    text-align: center;
71
}
72

    
73
.fof{
74
	  display: table-cell;
75
	  vertical-align: middle;
76
}
77

    
78
.fof h1{
79
	  font-size: 50px;
80
	  display: inline-block;
81
	  padding-right: 12px;
82
	  animation: type .5s alternate infinite;
83
}
84

    
85
@keyframes type{
86
	  from{box-shadow: inset -3px 0px 0px #888;}
87
	  to{box-shadow: inset -3px 0px 0px transparent;}
88
}
(1-1/5)