-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (108 loc) · 1.99 KB
/
styles.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
106
107
108
109
110
111
.ad-container {
background-color: #f0f8ff;
border: 2px solid #4a90e2;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 600px;
margin: 20px auto;
text-align: left;
}
.ad-container h2 {
color: #4a90e2;
font-size: 28px;
margin-bottom: 10px;
}
.ad-container p {
color: #333;
font-size: 16px;
line-height: 1.5;
}
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f8ff;
color: #333;
padding: 20px;
}
h1 {
color: #4a90e2;
font-size: 36px;
}
form {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 20px;
}
form label {
color: #4a90e2;
font-weight: bold;
}
form input {
padding: 5px;
border: 2px solid #4a90e2;
border-radius: 5px;
width: 60px;
}
form button {
background-color: #4a90e2;
color: white;
padding: 8px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
form button:hover {
background-color: #357abd;
}
.counter-display {
font-size: 28px;
color: #4a90e2;
margin: 20px 0;
}
.counter-buttons button {
font-size: 20px;
padding: 10px 20px;
margin: 10px;
background-color: #4a90e2;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.counter-buttons button:hover {
background-color: #357abd;
}
table {
width: 100%;
max-width: 600px;
margin: auto;
border-collapse: collapse;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
border-radius: 8px;
}
table th, table td {
padding: 15px;
border-bottom: 1px solid #ddd;
}
table th {
background-color: #4a90e2;
color: white;
}
table tr:nth-child(even) {
background-color: #f2f2f2;
}
table td button {
padding: 5px 10px;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
table td button:hover {
background-color: #357abd;
}