-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvote.css
More file actions
96 lines (80 loc) · 1.47 KB
/
Copy pathvote.css
File metadata and controls
96 lines (80 loc) · 1.47 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
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
/*apply css properties to body tag*/
/* body {
position: absolute;
left: 0%;
text-align: center;
} */
/*apply css properties to container class*/
.container {
/* justify-content: center; */
align-items: center;
display: flex;
height: 100%;
text-align: center;
}
/*apply css properties to button tag*/
/* button {
width: 90px;
height: 60px;
font-size: 30px;
background-color: green;
color: honeydew;
} */
/*apply hover effect to button tag*/
/* button:hover {
background-color: greenyellow;
color: grey;
} */
/*apply css properties to h2 tag*/
.counter {
background-color: grey;
border: none;
color: white;
/* padding: 10px; */
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
border-radius: 50%;
}
.parent_container {
display: inline;
}
.counting {
margin: 10px;
}
.collapsible {
background-color: #777;
color: white;
cursor: pointer;
padding: 8px;
/* width: 100%; */
border: none;
text-align: left;
outline: none;
font-size: 12px;
border-radius: 10%;
}
.active,
.collapsible:hover {
background-color: #555;
}
.content {
padding: 0 18px;
display: none;
overflow: hidden;
/* background-color: #f1f1f1; */
}
ul {
list-style-type: none;
padding: none;
margin: none;
}
.share {
margin-left: 20px;
}
#counting {
margin-left: 10px;
margin-right: 10px;
}