-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewstyle.css
203 lines (184 loc) · 2.9 KB
/
newstyle.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
RESET
*/
*{
border:0;
margin:0;
padding:0;
}
.clear{
clear:both; /*disallows floating elements on both left and right sides of an element*/
}
/*
STRUCTURE
*/
html,body{
background:#fff;/*white*/
font:100%/1.1 Tahoma, Geneva, sans-serif; /* font-style font-variant font-weight font-size/line-height font-family*/
height:100%;
text-align:center;
}
#container{
height:100%;
margin:0;/*no margins*/
position:relative;
width:100%;
}
/*Style of our horizontal row breaks.*/
hr{
background:#bbb;
clear:both;
display:block;
height:2px;
margin:20px 0;/*top/bottom are 20px, left/right are 0*/
}
#sideBar{
background:#89c;
color:#444;
font-weight:bold;
height:100%;
width:4%;
position:fixed;
left:0;
top:0;
z-index:2;
}
#footer {
position:absolute;
bottom:0;
height:45px;
width:100%;
z-index:1;
border-top:1px solid rgba(29, 29, 32, 0.09);
font-size:.7em;
text-align:right;
}
.main{
width:96%;
float:right;
}
/*
TYPOGRAPHY
*/
a{
text-decoration:none;
color:#333;
font-size:1.8em;
}
h1{
font-size:4em;
padding-top:20px;
margin:0 0 20px 0;
}
h2{
font-size:2em;
margin:10px 0 10px 0;
}
p{
font-size:1.5em;
}
/*
BUTTONS
*/
.button{
border:1px solid #879;
cursor:pointer;
font:bold;
text-shadow:0 1px 1px #666;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
padding:5px 10px;
}
.button:hover{
border:1px solid #325;
}
.button:active{
background:#edf;
}
.big{
border:4px solid #cbd;
border-radius:15px;
-moz-border-radius:15px;
-webkit-border-radius:15px;
box-shadow:0 1px 3px #999;
-moz-box-shadow:0 1px 3px #999;
-webkit-box-shadow:0 1px 3px #999;
padding:27px 100px;
margin-right:30px;
}
.big:hover{
border:4px solid #a9a;
}
.left{
border-top-right-radius:0;
border-bottom-right-radius:0;
-webkit-border-top-right-radius:0;
-webkit-border-bottom-right-radius:0;
}
.middle{
position:relative;
left:-6px;
border-radius:0;
-moz-border-radius:0;
-webkit-border-radius:0;
}
.right{
position:relative;
left:-12px;
border-top-left-radius:0;
border-bottom-left-radius:0;
-webkit-border-top-left-radius:0;
-webkit-border-bottom-left-radius:0;
}
.buttonColors{
background:#ccd;
color:#333;
}
/*the class of the div around a set of bigbuttons to space the text around them reasonably.*/
.bigButtonSpace{
margin:10% 0;
}
.buttonSet{
margin:5px;
}
/*
WHITEBOARD/lESSONS STUFF
*/
#whiteboardContainer{
position:relative;
left:20%;
background:url(images/whiteboard.png) no-repeat;
background-size:100% 100%;
-webkit-background-size:100% 100%;
-moz-background-size:100% 100%;
height:65%;
width:60%;
}
#whiteboardContainer p{
position:relative;
font-size:4em;
top:40%;
margin-left:auto;
margin-right:auto;
}
#whiteboardContainer input{
border:5px solid #000;
outline:0;
font-size:1.2em;
width:8%;
}
/*
MESSAGING
*/
.message{
padding:10px;
margin:0 0 10px 0;
width:607px;
}
.good{
background:#9fb;
}
.bad{
color: #e04;
}