-
Notifications
You must be signed in to change notification settings - Fork 128
/
styl_1.css
59 lines (50 loc) · 775 Bytes
/
styl_1.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
body {
margin: 0;
}
* {
font-family: Cambria;
}
header,
footer {
background-color: #829EB9;
color: white;
text-align: center;
padding: 10px;
}
main {
display: flex;
}
#panelLewy,
#panelPrawy {
background-color: #B3C6D9;
height: 400px;
width: 25%;
padding-top: 100px;
}
#panelSrodkowy {
background-color: #E0E9F1;
height: 400px;
width: 50%;
text-align: center;
padding-top: 100px;
}
table {
border: 1px solid DimGray;
width: 80%;
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
td,
th {
border: 1px solid DimGray;
border-collapse: collapse;
}
td:hover {
background-color: SteelBlue;
color: white
}
img {
width: 100%;
border-radius: 20px;
}