-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (50 loc) · 861 Bytes
/
style.css
File metadata and controls
52 lines (50 loc) · 861 Bytes
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
body {
background-color:#696969;
}
.title-text {
text-align: center;
font-size: 50px;
color:red;
text-shadow: -4px 4px 5px #363636;
}
.square {
width: 100px; height: 100px;
float:left;
background-color: white;
color:white;
text-align: center;
font-size:20px;
display: table;
}
.text{
text-align: center;
display: table-cell;
vertical-align: middle;
}
.text.background--dark{
color:white;
}
.text.background--light{
color:black;
}
.square:hover {
box-shadow: 0px 0px 20px #F0FFF0 inset;
text-align: center;
vertical-align: middle;
color:white;
}
.workspace {
/*border: 3px solid #00FFFF;*/
width: 800px; height: 1200px;
background-color: white;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
box-shadow: -4px 4px 5px #363636;
}
.footer{
text-align: center;
margin-top: 10px;
margin-bottom: 20px;
font-size: 20px;
}