-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (99 loc) · 2.37 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
/* obrázek na pozadí v jumbotronu */
#vedeni-ucetnictvi {
background-image: url("./assets/images/matous-burysek-ucetnictvi-Brno.jpeg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
/* pozadí textu v jumbotronu */
#vedeni-ucetnictvi p {
/* text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white, 0 0 10px white, 0 0 5px white; */
text-shadow: 0 0 10px white, 0 0 5px white, 0 0 1px white;
}
.text-secondary {
font-style: italic;
}
.nav-item {
font-size: large;
}
h1, h2, h3, h4, h5 {
font-family: 'Signika Negative', sans-serif;
}
h5 {
font-weight: normal;
}
/* modré zbýraznění některých slov */
.word-background {
margin: 0px auto 0px auto;
border-radius: 3px;
padding: 2px 8px;
background-color:hsl(220, 90%, 56%);
color: white;
}
/* změna stylu odkazů */
a {
color: unset;
text-decoration: none;
}
a:hover {
font-weight: bolder;
color: hsl(220, 90%, 56%);
}
/* stejná výška všech karet článk */
.card {
min-height: 450px;
}
/* šedé pohybující se pozadí v některých sekcích */
#matous-burysek, #ucetni-software, #clanek, #kontakt {
background-image: url("/assets/images/grey-bg.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
/* změna tabulky */
table, td {
padding-left: 0px !important;
border-left: 0px;
border: none;
}
/* kontaktní okno - nevyužívá Bootstrap */
#window-contact {
display: none;
position: fixed;
top: 15%;
left: 20%;
width: 60%;
background-color: hsl(220, 90%, 56%);
border-radius: 15px;
box-shadow: 0 0 10px black;
color: white;
}
#close-button {
position: absolute;
top: 5px;
right: 15px;
font-size: xx-large;
color: black;
/* font-weight: bold; */
cursor: pointer;
}
#close-button:hover {
color: white;
font-weight: bold;
}
/* CSS v mobilní verzi ??? window contact musí mít jiné rozměry */
@media only screen and (max-width: 800px) {
#window-contact {
display: none;
position: fixed;
top: 5%;
left: auto;
right: auto;
width: 90%;
background-color: hsl(220, 90%, 56%);
border-radius: 15px;
box-shadow: 0 0 10px black;
color: white;
}
}