aboutsummaryrefslogtreecommitdiff
path: root/style.css
blob: f3cf369ec38a786638cc63755f2e30b97aa14ae6 (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
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo img{
    width: 100%;
    height: auto;
}

#contacts{
    display: flex;
}

#contacts p{
  font-size: 2vmin;
  margin-right: 10px;
}

#contacts img {
    min-width: 0%;
    max-width: 50%;
}

#hamenu span{
    display: block;
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: black;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Caption text */
  .text {
    color: black;
    font-size: 150%;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background-color: white;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
.highlight {
  color: blue;
}

#desc-and-pic-container{
  display: flex;
  flex-wrap: wrap;
}

#description img{
  height: auto;
  max-width: 35%;
}

#picture img{
  height: 100%;
  width: 100%;
}