-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
98 lines (85 loc) · 1.64 KB
/
App.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
.login-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: black; /* fallback for old browsers */
color: white;
}
.welcome-message {
font-size: 2rem;
text-align: center;
margin-bottom: 2rem;
}
.login-button {
background-color: #007bff;
color: #fff;
font-size: 1.2rem;
border: none;
border-radius: 0.3rem;
padding: 1rem 2rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
.login-button:hover {
background-color: #0069d9;
}
.connected-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f1f1f1;
}
.connected-header {
font-size: 2rem;
text-align: center;
margin-bottom: 2rem;
}
.connected-account {
font-size: 1.2rem;
text-align: center;
margin-bottom: 2rem;
}
.connected-button {
background-color: #007bff;
color: #fff;
font-size: 1.2rem;
border: none;
border-radius: 0.3rem;
padding: 1rem 2rem;
cursor: pointer;
transition: background-color 0.3s ease;
margin-bottom: 2rem;
}
.connected-button:hover {
background-color: #0069d9;
}
.connected-contract-address {
font-size: 1.2rem;
text-align: center;
}
.candidates-table {
border-collapse: collapse;
width: 50%;
text-align: center;
}
.candidates-table th,
.candidates-table td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.candidates-table th {
background-color: #f2f2f2;
}
input[type="number"] {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
margin-bottom: 10px;
}