-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (78 loc) · 1.57 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
#navbar {
width: 100%;
height: 75px;
top: 0px;
position: absolute;
z-index: 999;
/*background-color: #000;*/
/*opacity: 0.5;*/
}
.section {
text-align: center;
}
h4 {
/*text-align: left;*/
/*font-size: 1em;*/
/*margin-bottom: 50px;*/
/*!*text-transform: uppercase;*!*/
/*font-weight: bold;*/
/*color: #fff;*/
/*text-shadow: 0 1px 2px rgba(0,0,0,0.15);*/
font-family: 'Lora', serif;
color: white;
}
p {
margin: 0 20px 20px;
font-size: 16px;
line-height: 1.5em;
color: #333;
}
.row {
display: flex;
/*align-items: center;*/
/*justify-content: center;*/
}
.column {
flex: 20%;
text-align: center;
/*border-style: solid;*/
/*border-width: 1px;*/
/*border-color: #cccccc;*/
/*padding: 5px;*/
}
.text {
position: fixed;
top: 15%;
left: 80%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
background-color: rgba(30, 30, 30, 0.2);
padding: 10px;
box-shadow: 0px 0px 50px #888888;
}
a {
text-decoration: none !important;
}
.fp-controlArrow.fp-prev {
left: 0;
border: none;
width: 50px;
height: 101px;
background: url(images/arrows/left.png) no-repeat;
background-size: 30px 50px;
cursor: pointer;
margin: 2%;
}
.fp-controlArrow.fp-next {
right: 0;
border: none;
width: 50px;
height: 101px;
background: url(images/arrows/right.png) no-repeat;
background-size: 30px 50px;
cursor: pointer;
margin-top: 2%;
margin-bottom: 2%;
margin-left: 2%;
margin-right: 1%;
}