source: CSS/Renew.css@ 75f74d9

main
Last change on this file since 75f74d9 was 75f74d9, checked in by Vlado 222039 <vlado.popovski@…>, 6 weeks ago

Initial commit: Adding Book Tracker code

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[75f74d9]1body {
2 font-family: "Libre Baskerville", Georgia, serif;
3 background-color: #f5f5f5;
4 margin: 0;
5 padding: 20px;
6 color: #333;
7 line-height: 1.6;
8}
9
10.renew-container {
11 max-width: 600px;
12 margin: 40px auto;
13 background: white;
14 padding: 35px;
15 border-radius: 8px;
16 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
17}
18
19h2 {
20 color: #2e7d32;
21 font-size: 28px;
22 margin-bottom: 25px;
23 padding-bottom: 15px;
24 border-bottom: 2px solid #eee;
25}
26
27p {
28 margin: 20px 0;
29 font-size: 16px;
30 color: #445;
31}
32
33strong {
34 color: #2e7d32;
35 font-weight: 600;
36}
37
38.button-group {
39 margin-top: 25px;
40 display: flex;
41 gap: 15px;
42}
43
44.renew-link {
45 display: inline-block;
46 background-color: #2e7d32;
47 color: white;
48 text-decoration: none;
49 padding: 14px 28px;
50 border-radius: 4px;
51 font-size: 16px;
52 transition: all 0.3s ease;
53 border: none;
54}
55
56.renew-link:hover {
57 background-color: #1b5e20;
58 transform: translateY(-1px);
59 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
60}
61
62.cancel-link {
63 display: inline-block;
64 background-color: #757575;
65 color: white;
66 text-decoration: none;
67 padding: 14px 28px;
68 border-radius: 4px;
69 font-size: 16px;
70 transition: all 0.3s ease;
71}
72
73.cancel-link:hover {
74 background-color: #616161;
75 transform: translateY(-1px);
76 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
77}
78
79/* Status indicator styles */
80.status-active {
81 color: #2e7d32;
82}
83
84.status-expired {
85 color: #c62828;
86}
87
88@media (max-width: 480px) {
89 .renew-container {
90 padding: 20px;
91 margin: 20px auto;
92 }
93
94 h2 {
95 font-size: 24px;
96 }
97
98 .button-group {
99 flex-direction: column;
100 }
101
102 .renew-link, .cancel-link {
103 text-align: center;
104 }
105}
Note: See TracBrowser for help on using the repository browser.