-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (121 loc) · 2 KB
/
style.css
File metadata and controls
144 lines (121 loc) · 2 KB
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
/* Begin Coding Quiz Challenge styling */
#wrapper {
position: absolute;
left: 30%;
top: 20%;
width: 500px;
height: 500px;
border: 2px solid #0ABAB5;
background-color: #FAF3F2;
}
#startTime {
background-color: #0ABAB5;
margin-left: 33%;
padding: 15px 32px;
font-size: 25px;
color: white;
}
#questionsDiv {
margin: 20px;
}
#currentTime {
float: right;
}
#goBack {
background-color: #0ABAB5;
position: relative;
padding: 10px;
font-size: 20px;
color: white;
top: 30%;
left: 55%;
width: auto;
text-align: center;
text-decoration: none;
}
#clear {
background-color: #0ABAB5;
position: relative;
padding: 10px;
font-size: 20px;
color: white;
top: 30%;
right: 5%;
text-align: center;
}
button {
border-radius: 8px;
}
textarea {
width: 90%;
margin: 20px;
}
#Submit {
background-color: #0ABAB5;
margin-left: 33%;
padding: 15px 32px;
font-size: 20px;
color: white;
}
label {
margin-right: 10px;
}
input {
margin-bottom: 20px;
width: 50%;
border: 1px solid lightgray;
}
h1 {
text-align: center;
}
li {
background-color: #0ABAB5;
margin-top: 10px;
padding: 5px 15px;
width: 80%;
font-size: 18px;
color: white;
}
#createDiv {
margin-top: 20px;
border-top: 1px solid lightgray;
}
/* Start media queries */
/* A Media Query max-width: 786px */
@media screen and (max-width: 786px) {
/* Resized content to fit 786px */
body {
max-width: 786px;
}
/* Resized main-content to fit 786px */
#wrapper {
position: absolute;
left: 20%;
}
a {
margin-left: 20%;
}
#goBack {
position: relative;
left: 55%;
}
#clear {
position: relative;
right: 5%;
}
}
/* A Media Query max-width: 640px */
@media screen and (max-width: 640px) {
/* Resized content to fit 640px */
body {
min-width: 640px;
}
/* Resized main-content to fit 640px */
#wrapper {
position: absolute;
left: 10%;
}
a {
margin-left: 10%;
}
}