-
Notifications
You must be signed in to change notification settings - Fork 0
/
bankup.css
105 lines (88 loc) · 1.84 KB
/
bankup.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
/* Resetowanie marginesów i wypełnień */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Ogólny styl strony */
body {
font-family: Arial, sans-serif;
background-color: #696969;
color: #fff;
}
/* Styl nagłówka */
header {
background-color: #3d3d3d; /* Ciemny niebieski */
color: #fff;
padding: 20px 0;
text-align: center;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
width: 100px;
height: auto;
display: block;
margin: 0 auto;
}
h1 {
margin-top: 10px;
font-size: 2.5em;
}
/* Styl sekcji głównej */
main {
padding: 20px;
text-align: center;
}
p, h2 {
font-size: 1.2em;
color: #fff; /* Zmieniono na biały */
}
/* Styl sekcji cennika */
.pricing {
margin-top: 30px;
}
.pricing h2 {
font-size: 2em;
margin-bottom: 20px;
}
/* Styl tabeli */
table {
width: 80%;
margin: 0 auto;
border-collapse: separate;
border-spacing: 0;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 10px rgba(20, 20, 0, 0.2);
background-color: #3d3d3d; /* Ciemny kolor tła dla tabeli */
color: #fff; /* Jasny kolor tekstu */
}
th, td {
border: 1px solid #aaa;
padding: 10px;
text-align: left;
}
th {
background-color: #3d3d3d; /* Ciemny kolor tła dla nagłówków tabeli */
color: #fff;
}
tbody tr:nth-child(even) {
background-color: #4d4d4d; /* Lekko jaśniejszy odcień ciemnego koloru */
}
tbody tr:nth-child(odd) {
background-color: #5d5d5d; /* Jeszcze jaśniejszy odcień ciemnego koloru */
}
/* Styl stopki */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}