-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (61 loc) · 1.05 KB
/
style.css
File metadata and controls
69 lines (61 loc) · 1.05 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
63
64
65
66
67
68
69
main{
grid-template-columns: auto;
font-size: 17px;
}
img{
display:grid;
align-items: center;
margin: 1px;
}
div.create {
width: 500px;
height: 300px;
margin: 7px;
color: black;
border-color: #373737;
border-width: 10px 10px 10px 10px;
display: grid;
}
div.goal {
width: 500px;
height: min-content;
margin: 10px;
color: #d3b50d;
border-color: #414141;
border-width: 10px 10px 10px 10px;
display: grid;
grid-template-columns: auto;
font-size: 17px;
}
div.contri {
width: 650px;
height: 250px;
margin: 9px;
padding: 5px;
color: #515151;
background-color: aquamarine;
display: inline-grid;
grid-template-columns: auto;
font-size: 15px;
}
div.member {
width: 800px;
height: 400px;
margin: 7px;
padding: 3px;
color: #232323;
background-color: rgb(197, 194, 194);
display: grid;
grid-template-columns: auto auto auto 175px;
}
aside {
margin-right: 60px;
width: 506px;
font-size: 17px;
}
footer {
color: white;
background-color: #232323;
text-align: center;
font-size: 13px;
}