-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleQuestions.css
146 lines (143 loc) · 2.41 KB
/
styleQuestions.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
body{
text-align: center;
position: relative;
margin-top: 200px;
}
h1{
font-family: "Oxygen";
position: relative;
}
div label { /*customizes label text in all questions */
display: inline-flex;
padding: 7px;
font-family: "Raleway";
font-size: 120%;
color: #79b7c7;
position: relative;
}
div{
color: #79b7c7;
-webkit-animation: fadein 2s;
-moz-animation: fadein 2s;
-ms-animation: fadein 2s;
-o-animation: fadein 2s;
animation: fadein 2s;
}
.button1 { /*label buttons*/
background-color: white;
border: none;
display: inline-flex;
width: 500px;
vertical-align: middle;
}
.submit { /*submit button*/
margin: 20px;
margin-right: 470px;
background-color: #79b7c7;
color: white;
border: 5px solid #79b7c7;
font-size: 100%;
font-family: "Raleway";
font-weight: bold;
border-radius: 4px;
}
.mcQ1 label:hover{ /*puts gray behind text when hovered*/
background-color: #F5F5F5;
}
.rectangle{
width: 300px;
height: 100px;
border-radius: 5px;
background: #EDFDFF;
position: absolute;
margin-left: 450px;
transform: rotate(10deg);
}
input[type=radio]{
position:relative;
}
/*dropdown css*/
.ddQ1{
display: none;
}
#question {
font-size: 100%;
color: #79b7c7;
font-family: "Raleway";
border: 1px solid #79b7c7;
margin-right: 51px;
cursor: pointer;
}
.submitDD { /*submit button*/
background-color: #79b7c7;
color: white;
border: 5px solid #79b7c7;
font-size: 100%;
font-family: "Raleway";
font-weight: bold;
border-radius: 4px;
margin-top:50px;
margin-left: -285px;
position: absolute;
}
/*table css*/
.cal{
display: none;
}
#head{
margin-top: -170px;
}
table{
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: center;
padding: 5px;
}
th{
width: 14.285714287%;
}
input{
border: 1px solid #dddddd;
position: absolute;
margin: 0px;
}
span{
position: relative;
left: -100px;
}
ul{
margin-left: 0px;
list-style-type: none;
}
#option{
font-size: 55%;
position: relative;
cursor: pointer;
margin-left: 15px;
padding-top: 5px;
border: .5px solid #dddddd;
font-family: "Raleway";
margin-bottom: -50px;
margin-top: -50px;
}
.text:hover + .option{
visibility: hidden;
}
.text:focus {
width: 100px;
padding: 0px;
margin-left: 20px;
}
.text{
visibility: visible;
}
.option{
visibility: hidden;
}