-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordVoting.css
117 lines (103 loc) · 1.79 KB
/
wordVoting.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.center {
width: 100%;
height: 100%;
min-width: 880px;
display: flex;
flex-direction: column;
position: absolute;
top: 0;
left: 0;
}
#voteHeader{
position: absolute;
}
#voteInfo {
margin-top: 95px;
text-align: center;
color: #4e4d4d;
font-weight: bold;
}
#voteInfo p {
background: white;
width: 600px;
margin: auto;
border-radius: 10px;
padding: 15px;
margin-bottom: 20px;
}
#votingWordsTable {
margin: auto;
border-spacing: 0 8px;
width: 600px;
}
#votingWordsTable tr {
background: white;
}
#votingWordsTable td {
padding: 20px;
color: #4e4d4d;
}
#votingWordsTable tr td:nth-child(1) {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
width: 3%;
padding-right: 5px;
padding-left: 30px;
}
#votingWordsTable tr td:nth-child(2) {
font-size: 25px;
width: 50px;
font-family: 'Caveat Brush', cursive;
padding-left: 10px;
padding-right: 10px;
}
#votingWordsTable tr td:nth-child(3) {
border-bottom-right-radius: 10px;
border-top-right-radius: 10px;
text-transform: uppercase;
text-align: center;
font-weight: bold;
font-size: 25px;
padding-right: 70px;
}
.voteClick {
width:25px;
height: 25px;
display: block;
}
#add {
width: 30px;
height: 30px;
margin-left: -3px;
}
#wordBox {
width: 250px;
padding: 10px;
border: 1px dashed #17d162;
box-sizing: border-box;
text-align: center;
margin-right: 5px;
padding-top: 12px;
padding-bottom: 9px;
}
#addButton {
font-size: 20px;
color: #353535;
font-family: 'Caveat Brush', cursive;
background: #17d162;
border: none;
padding: 6px;
width: 90px;
margin-right: 5px;
}
#addButton active {
background: #ffffff;
}
#submissiontd {
align-items: center;
border-bottom-right-radius: 10px;
border-top-right-radius: 10px;
}
#submitRow {
height: 90px;
}