Project

General

Profile

1
.uk-card .uk-grid-divider>:not(.uk-first-column)::before {
2
  border-left: 1px solid currentColor;
3
  opacity: 0.2;
4
}
5

    
6
.uk-card .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before {
7
  border-top: 1px solid currentColor;
8
  opacity: 0.2;
9
}
10

    
11
.uk-card .uk-button.action, .uk-card .uk-icon-button.action {
12
  background: #FFFFFF;
13
  box-shadow: 0 3px 6px #00000029;
14
  font-family: "Roboto", sans-serif;
15
  border: none;
16
  color: #4D4D4D;
17
  text-transform: none;
18
  line-height: 19px;
19
  font-size: 14px;
20
}
21

    
22
.uk-card .uk-button.action {
23
  border-radius: 40px;
24
  padding: 12px 20px;
25
  width: 100%;
26
}
27

    
28
.uk-card .uk-button.action.uk-width-auto {
29
  width: auto;
30
}
31

    
32
.uk-card .uk-button.action:disabled, .uk-card .uk-icon-button.action:disabled  {
33
  opacity: 0.5;
34
}
35

    
36
.uk-card .uk-button.action:hover:not(:disabled), .uk-card .uk-icon-button.action:hover:not(:disabled)  {
37
  box-shadow: 0 3px 6px rgba(71, 135, 230, 0.5);
38
}
39

    
40
/* --- Flip Card --- */
41
.uk-card.uk-card-flip {
42
  background-color: transparent;
43
  height: 430px;
44
  perspective: 1000px;
45
}
46

    
47
/* This container is needed to position the front and back side */
48
.uk-card-flip-inner {
49
  position: relative;
50
  width: 100%;
51
  height: 100%;
52
  transition: transform 1s;
53
  transform-style: preserve-3d;
54
}
55

    
56
/* Do an horizontal flip when you move the mouse over the flip box container */
57
.uk-card.uk-card-flip.uk-active .uk-card-flip-inner {
58
  transform: rotateY(-180deg);
59
}
60

    
61
/* Position the front and back side */
62
.uk-card.uk-card-flip .front, .uk-card.uk-card-flip .back {
63
  position: absolute;
64
  width: 100%;
65
  height: 100%;
66
  -webkit-backface-visibility: hidden; /* Safari */
67
  backface-visibility: hidden;
68
  -webkit-transform: translate3d(0, 0, 0);
69
  transform: translate3d(0, 0, 0);
70
}
71

    
72
.uk-card.uk-card-flip .front {
73
  background-color: white;
74
}
75

    
76
  /* Style the back side */
77
.uk-card.uk-card-flip .back {
78
  background-color: white;
79
  transform: rotateY(180deg);
80
}
(4-4/19)