-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
56 lines (48 loc) · 828 Bytes
/
main.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
body {
background-color: #f8fafb;
margin: 0;
}
img {
width: 100%;
}
#projects--wrapper {
max-width: 600px;
margin: 0 auto;
margin-top: 2em;
border: 1px solid #eaeaeb;
background-color: #fff;
border-radius: 5px;
}
.project--card {
display: grid;
grid-template-columns: 1fr 3fr;
gap: 2em;
margin-top: 2em;
padding: 1em;
align-items: center;
}
.project--card p {
color: #737373;
}
.card--header {
display: flex;
align-items: center;
gap: 2em;
}
.vote--option {
font-size: 24px;
color: #737373;
cursor: pointer;
}
.vote--option:hover {
color: #000;
}
#form-wrapper {
max-width: 600px;
margin: 0 auto;
margin-top: 2em;
border: 1px solid #eaeaeb;
background-color: #fff;
border-radius: 5px;
padding: 2em;
}