-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (49 loc) · 811 Bytes
/
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
#board-container {
display: inline-block;
background-color: #6a6a6a;
padding: 30px;
border-radius: 20px;
}
#board {
display: inline-grid;
grid-row-gap: 4px;
row-gap: 4px;
}
.feedback-pin-container {
background-color: darkgray;
margin: 0px;
padding: 0px;
}
.feedback-count-display {
display: inline-block;
text-align: center;
vertical-align: middle;
width: 80%;
height: 80%;
padding: 10%;
font-size: 250%;
}
.feedback-pin {
display: inline-block;
border: solid 1px black;
border-radius: 100%;
width: 30%;
height: 30%;
margin: 30%;
}
.pin-container {
background-color: lightgray;
}
.pin {
display: inline-block;
border: solid 1px black;
border-radius: 100%;
width: 40%;
height: 40%;
margin: 25%;
background-color: #818181;
}
body {
text-align: center;
font-family: arial;
}