-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
91 lines (84 loc) · 1.55 KB
/
style2.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
.testingContainer {
font-size:20px;
color:#4B0082;
gap:20px;
font-weight: bold;
}
.testingContainer h2 {
font-size:20px;
color:#4B0082;
text-align:center;
gap:20px;
font-weight: bold;
}
.testingContainer .image-container {
margin-top:25px;
display:flex;
gap:20px;
max-width:100%;
}
.formTest-elementTest{
position:relative;
width:100px;
height:100px;
display: flex;
}
.formTest-elementTest label {
width:100%;
display:flex;
justify-content:center;
align-items: flex-end;
height:100%;
cursor:pointer;
border:2px solid #ddd;
background:#fff;
box-shadow:0px 5px 20px 2px rgba(0,0,0,0.1);
text-align:center;
transition:all 200ms ease-in-out;
border-radius:5px;
position: absolute;
bottom: 0;
font-size:14px;
font-weight:bold;
color: #4B0082;
text-transform: uppercase;
}
.formTest-elementTest .icon {
margin-top:10px;
font-size:30px;
font-weight:900;
color:#555;
transition:all 200ms ease-in-out;
justify-content:center;
}
.formTest-elementTest .title {
font-size:10px;
font-weight:900;
color:#555;
padding:5px 0px;
transition:all 200ms ease-in-out;
}
.formTest-elementTest label:before {
content:"✓";
position:absolute;
width:10px;
height:10px;
top:8px;
left:8px;
background:#4B0082;
color:#fff;
text-align:center;
line-height:18px;
font-size:5px;
font-weight:900;
border-radius:50%;
opacity:0;
transform:scale(0.5);
transition:all 200ms ease-in-out;
}
.acceptable, .non-acceptable {
display:flex;
flex-wrap:wrap;
flex: 1;
flex-direction: row;
}