-
Notifications
You must be signed in to change notification settings - Fork 0
/
mojeKursy.css
101 lines (83 loc) · 1.45 KB
/
mojeKursy.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
* {
margin: 0px;
}
/* nav */
nav img {
height: 1em;
width: 3em;
}
nav a {
color: black;
text-decoration: none;
font-size: 1.2em;
margin: 0 12px;
transition: color 0.35s;
}
nav {
display: flex;
width: 100%;
height: 70px;
font-size: 1.6em;
justify-content: space-between;
background-color: rgb(240, 238, 238);
align-items: center;
}
nav a[href="index.html#home"] {
color: rgb(47, 255, 29);
}
nav a:hover {
color: rgb(47, 255, 29);
}
/* main */
main {
height: 500px;
}
h1 {
text-align: center;
font-size: 2.2em;
}
/* footer */
footer {
display: flex;
width: 100%;
height: 300px;
background-color: rgb(29, 230, 11);
justify-content: space-around;
font-size: 1.2em;
align-items: center;
}
footer>.left {
display: flex;
justify-content: space-between;
margin: 10px;
margin-right: 200px;
}
footer .nav {
display: flex;
flex-direction: column;
}
footer .nav a {
text-decoration: none;
color: black;
transition: color 0.35s;
}
footer .kontakt {
margin: 0 50px;
}
.right h3 {
font-size: 1.6em;
color: white;
}
.left h3 {
font-size: 1.6em;
color: white;
margin-bottom: 10px;
}
.right section {
margin-top: 30px;
}
.right section a i {
margin-top: 30px;
padding-right: 15px;
color: white;
}