-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_main.css
94 lines (78 loc) · 1.33 KB
/
styles_main.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
head, body {
width: auto;
background-color: #f5f5f5;
}
body {
font-family: sans-serif;
font-size: 16px;
line-height: 1.6;
background-color: #f5f5f5;
color: #333;
padding: 20px;
}
nav ul {
list-style-type: none;
margin: 5px 0;
padding: 0;
overflow: hidden;
background-color: #2c3e50;
}
nav li {
float: left;
}
nav a {
display: flex;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav li a:hover {
background-color: #e74c3c;
}
nav {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.intro {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-top: 30px;
padding: 20px;
background-color: white;
}
/* ^ Hledáni online / pomoc od AI s flex */
.desc {
flex: 1;
}
.desc h1 {
font-size: 28px;
color: #2c3e50;
}
.desc p {
font-size: 18px;
color: #666;
/* ^^ Ďáblovo číslo :O */
}
.picture img {
max-width: 250px;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 1px 0;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
footer a {
color: #e74c3c;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}