-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_about.css
97 lines (81 loc) · 1.33 KB
/
styles_about.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
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: block;
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);
}
.main1 {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 30px;
padding: 20px;
background-color: white;
}
.desc1 {
flex: 1;
margin-right: 20px;
}
.desc1 h1 {
font-size: 28px;
color: #2c3e50;
}
.desc1 p {
font-size: 18px;
color: #666;
/* ^^ Ďáblovo číslo :O */
}
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;
}
.link1 {
text-decoration: none;
color: #e74c3c;
}
.link1:hover {
text-decoration: underline;
color: royalblue;
}