-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (76 loc) · 2.06 KB
/
styles.css
File metadata and controls
85 lines (76 loc) · 2.06 KB
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
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
align-items: center;
height: 100vh;
background-color: #1e1e2f;
color: #dcdcdc;
font-family: Consolas, "Courier New", monospace;
}
/* Lewa część: Tekst główny */
.main-content {
flex: 1;
max-width: 55%;
padding: 40px;
}
.main-content h1 {
font-size: 48px;
color: royalblue;
margin-bottom: 20px;
}
.main-content h2 {
font-size: 16px;
color: #aaa;
font-weight: normal;
line-height: 1.6;
margin-bottom: 10px;
}
.main-content p {
font-size: 14px;
color: #ccc;
line-height: 1.6;
}
/* Panel logowania */
.login-panel {
flex: 1;
max-width: 25%;
margin: auto;
padding: 20px;
background-color: #2b2b3d;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
text-align: center;
}
.login-panel h2 {
margin-bottom: 20px;
font-size: 18px;
color: royalblue;
}
.login-panel input {
width: 90%;
padding: 8px;
margin-bottom: 15px;
background-color: #1e1e2f;
border: 1px solid royalblue;
border-radius: 4px;
color: #dcdcdc;
font-size: 14px;
}
.login-panel button {
width: 90%;
padding: 8px;
background-color: royalblue;
border: none;
border-radius: 4px;
color: #fff;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.login-panel button:hover {
background-color: royalblue;
}
</style>