-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (86 loc) · 1.64 KB
/
style.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
#solved {
overflow: scroll;
position: fixed;
bottom: 10px;
right: 10px;
width: 225px;
max-height: 570px;
background: #3a3a3c;
color: white;
padding: 2px 10px;
border: 10px solid #3a3a3c;
border-left-width: 0;
border-right-width: 0;
border-radius: 5px;
cursor: pointer;
z-index: 100;
}
.flex-container {
display: flex;
flex-wrap: wrap;
margin: 0;
box-sizing: border-box;
padding: 0 10px;
}
.flex-item {
text-align: center;
box-sizing: border-box;
padding: 5px 10px;
font-size: 14px;
border: 1px solid #3a3a3c;
flex: 1;
min-width: 33.33%;
}
.flex-item:hover {
background: #b59f3b;
}
.flex-item:not(:first-child):not(:nth-child(2)) {
flex-grow:0;
}
.flex-item-winner {
box-sizing: border-box;
padding: 5px;
font-weight: 700;
font-size: 18px;
background-color: #6baa64;
border: 2px solid #3a3a3c;
flex: 1;
min-width: 20%;
text-align: center;
height: 35px;
}
.suggested {
display: flex;
flex-wrap: wrap;
margin: 10px;
padding-bottom: 8px;
box-sizing: border-box;
border-bottom: 1px solid gray;
}
.suggested-text {
box-sizing: border-box;
margin: 5px 0;
padding: 5px 0;
font-size: 14px;
border: 1px solid #3a3a3c;
flex: 1;
min-width: 33.33%;
cursor: auto;
}
.suggested-item {
box-sizing: border-box;
margin: 5px 0;
text-align: center;
padding: 5px 0;
font-size: 14px;
border: 1px solid #3a3a3c;
flex: 1;
min-width: 33.33%;
background: #b59f3b;
}
.suggested-item:hover {
background: #759f3b;
}
.ad {
display: none;
}