-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (52 loc) · 1 KB
/
styles.css
File metadata and controls
62 lines (52 loc) · 1 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
.proposal-card {
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
background-color: #f8f9fa;
}
.proposal-card h3 {
color: #0d6efd;
margin-bottom: 10px;
}
.proposal-card .status {
display: inline-block;
padding: 5px 10px;
border-radius: 15px;
font-size: 0.9em;
margin-bottom: 10px;
}
.proposal-card .status.active {
background-color: #198754;
color: white;
}
.proposal-card .status.ended {
background-color: #dc3545;
color: white;
}
.proposal-card .votes {
display: flex;
gap: 20px;
margin-top: 10px;
}
.proposal-card .votes div {
padding: 5px 10px;
border-radius: 5px;
}
.proposal-card .votes .yes {
background-color: #198754;
color: white;
}
.proposal-card .votes .no {
background-color: #dc3545;
color: white;
}
#connect-wallet {
margin: 20px 0;
}
#admin-section, #vote-section {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}