-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
149 lines (129 loc) · 2.28 KB
/
index.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
147
148
149
body {
background-color: #00bcd4;
height: 100vh;
margin: 0;
padding: 0;
}
h {
margin-left: 10px;
}
h1 {
font-family: verdana;
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}
h2 {
margin-bottom: 0;
}
h3 {
margin-top: 50px;
margin-bottom: 20px;
border-bottom: 3px solid #999;
}
.anchor{
display: block;
height: 95px;
margin-top: -95px;
visibility: hidden;
}
.app-title {
color: white;
font-size: 2.5em;
margin: 0;
text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.header {
background-color: white;
border-bottom:1px solid white;
padding:10px 20px;
position:fixed;
position:fixed;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
z-index:2000;
width:92%;
}
.footer {
margin-top: 520px;
}
.content {
background-color: white;
border-top: 70px solid white;
-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.33);
-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.33);
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.33);
min-height: 100%;
max-height: 1000%;
margin: 0 auto;
padding: 10px;
width: 92%;
top: -50px;
}
.toolbar {
background-color: rgb(200, 200, 200);
border-radius: 10px;
margin-bottom: 10px;
padding: 20px;
}
.vid {
margin-top: 12%;
margin-bottom: 12%;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.dottedUnderline {
font-size: 1.5em;
padding-bottom: 0;
border: none;
background: #fff transparent;
border-bottom: 3px dashed #999;
text-decoration: none;
}
.section-header {
margin-bottom: 10px;
}
.toolbar .btn+.btn {
margin-left: 10px;
}
.displayArea {
height: 100%;
min-height: 600px;
max-height: 800px;
width: 100%;
}
.codeArea {
background-color: #f8f9fa;
-webkit-box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.3);
-moz-box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.3);
padding: 10px;
}
.tab1 {
margin-left: 40px;
margin-right: 40px;
}
.tab2 {
margin-left: 20px;
margin-right: 40px;
}
.modal-holder {
overflow:auto;
}
.modalRequirement {
white-space: nowrap;
width: auto;
overflow-x: scroll;
}
.copy-button {
color:gray;
}
.copy-button:hover {
color:black;
}
.dropdown-menu {
max-height:800%;
overflow-y :auto;
overflow-x:hidden;
}