forked from AustinCodingAcademy/javascript-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (103 loc) · 1.86 KB
/
style.css
File metadata and controls
123 lines (103 loc) · 1.86 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
/* CSS Reset -- Typically in reset.css. Place right below comment if no reset.css is referenced in html */
/* Box Sizing border-box */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: lightgray;
font-family: Arial;
color: skyblue;
}
header {
width: 90%;
margin: auto;
padding: 10px 0px 20px 0px;
background-color: darkslategray;
border-bottom: 2px groove darkgray;
/*margin-bottom: 10px;*/
}
h3 {
width: 100%;
margin-bottom: 10px;
font-weight: bold;
font-size: 16pt;
color: white;
}
.web-title {
font-size: 24pt;
text-align: center;
}
/*Panel for the assignment*/
.my-tests {
width: 90%;
margin: auto;
background-color: darkslategray;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
/*align-items: flex-end;*/
}
/*Style for each test section*/
.test {
width: 100%;
padding: 10px;
border: 2px groove gray;
border-radius: 5px;
display:flex;
flex-wrap: wrap;
align-items: baseline;
margin: 10px;
}
#current-date {
font-weight: bold;
font-style: italic;
/*color: white;*/
}
/*Used for Test 1 date test*/
.underline {
border-bottom: 2px solid skyblue;
}
/*Button styling*/
.btn {
font-size: 14pt;
margin-left: 20px;
background-color: skyblue;
color: darkslategray;
}
/*input field styling*/
.num, .str {
font-size: 16pt;
text-align: center;
background-color: darkslategray;
color: inherit;
width: 10%;
/*margin-left: 20px;*/
}
/*Using these question styles to control flexbox objects*/
.question {
width: 10%;
/*margin: 0px 5px;*/
}
.q2 {
width: 90%;
}
.q4 {
width: 70%;
}
.qlast {
width: 100%;
}
/*Styling for the result sentences*/
.sentence {
padding-left: 50px;
font-size: 24pt;
}
.sentence4b, .sentence4c, .sentence4d {
width: 100%;
}
.secret {
color: yellow;
font-weight: bold;
}