-
Notifications
You must be signed in to change notification settings - Fork 0
/
creating.css
119 lines (115 loc) · 2.24 KB
/
creating.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
118
119
body{
display: flex;
flex-direction: column;
align-items: center;
min-height: 97.7vh;
background: linear-gradient(blue,violet);
}
h2{
color:rgba(255, 228, 196, 0.856);
}
.complete{
background: rgb(95, 215, 177);
border: none;
height: 30px;
border-radius: 10px;
font-size: 1.05rem;
font-weight: bolder;
margin: 10px 0px 3px 380px;
display:none;
}
.newQues{
text-decoration: none;
}
.question{
color:rgba(250, 235, 215, 0.9);
font-size: large;
display: block;
}
textarea{
display: block;
margin-top: 10px;
border-radius: 10px;
padding: 10px;
border: none;
background: rgba(245, 245, 245, 0.94);
width: 390px;
}
[type="text"]{
background: rgba(245, 245, 245, 0.886);
border: none;
margin-top: 10px;
border-radius: 5px;
padding: 3px;
}
.nextQues{
margin: 30px auto 50px;
background: tomato;
border: none;
height: 30px;
border-radius: 10px;
font-size: 1.05rem;
font-weight: bolder;
display: block;
}
.newQues{
margin: 30px auto 50px;
background: rgb(255, 71, 154);
border: none;
height: 30px;
border-radius: 10px;
font-size: 1.05rem;
font-weight: bolder;
display: block;
}
[type="radio"]{
margin-top: 20px;
}
.questions{
font-size: 22px;
color: rgb(207, 145, 83);
font-weight: 600;
display: none;
text-align: start;
}
.questions span{
font-size: 19px;
font-weight: 300;
color: rgb(239, 254, 23);
}.done{
position: absolute;
/* top: 100px;
left: 90px;
right: auto; */
top:0px;
visibility: hidden;
transform: scale(0.1,0.1) translate(0px,-200px);
}
.done1{
background: yellowgreen;
text-align: center;
font-size: larger;
padding: 20px;
border-radius: 25px;
width: 300px;
left: 90px;
position: absolute;
transform:scale(1,1) ;
top: 20px;
visibility: visible;
transition: transform .8s ,top .8s ,visibility .8s;
}
.done1 input{
background: rgba(255, 0, 0, 0.766);
border: none;
height: 30px;
border-radius: 10px;
font-size: 1.05rem;
font-weight: bolder;
margin: 30px 20px 0px;
}
@media screen and (max-width:420px) {
textarea{
width: 300px;
}
}