-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchestionare.css
113 lines (98 loc) · 1.85 KB
/
chestionare.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
body{
margin: auto;
}
.titlu{
font-size: 25px;
text-align: center;
text-transform: uppercase;
padding-top: 20px;
padding-bottom: 20px;
}
.corp-chestionar{
background-color:rgb(238, 235, 235);
width: 100%;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.corp-chestionar > .mini-container{
border: 1px solid black;
background-color: rgba(211, 202, 202, 0.945);
margin: 10px;
height: 350px;
width: 70%;
position: relative;
}
.mini-container:nth-child(1){
height: 40px;
margin-bottom: 0;
border-bottom: none;
display: flex;
align-items: center;
justify-content: center;
}
.mini-container:nth-child(2){
min-height: 140px;
margin-top: 0;
border-top: none;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.mini-container:nth-child(3){
height: 120px;
display: flex;
flex-direction: column;
justify-content: center;
}
.mini-container:nth-child(4){
height: 100px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.imagine{
right: 10px;
height: 100px;
width: 120px;
margin-top: auto;
margin-bottom: auto;
position: absolute;
}
.paragraf{
right: 140px;
left: 10px;
font-size: 20px;
position: absolute;
text-indent: 30px;
}
.raspuns{
display: block;
margin-left:10px;
font-size: 20px;
top: 0;
bottom: 0;
margin-top: auto;
margin-bottom: auto;
}
.buton-raspuns{
height: 30px;
width: 40px;
vertical-align: middle;
}
.optiune{
display: inline-block;
padding: 10px;
}
@media only screen and (max-width: 450px) {
.corp-chestionar > .mini-container{
width: 95%;
}
.optiune{
padding: 5px;
}
}