-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_frame.css
More file actions
82 lines (75 loc) · 1.41 KB
/
main_frame.css
File metadata and controls
82 lines (75 loc) · 1.41 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
#cover {position: fixed; height: 100%; width: 100%; top:0; left: 0; background: #e2e1d9; z-index:9999;}
.button {
color: white;
padding: 5px 0px;
position: relative;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
box-shadow: 0 2px 8px 0 rgba(0,0,0,0.2), 0 6px 2px 0 rgba(0,0,0,0.19);
width: 80%;
text-align: center;
margin: auto;
cursor: pointer;
text-decoration: none;
font-size: 13px;
font-family: 'Verdana', sans-serif;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
background-color: #131B23;
}
.button:hover{
background-color: #6ECF72;
}
#main_button{
top:25px;
}
#tic-tac-toe_button{
top:65px;
}
#snake_button{
top:105px;
}
#bman_button{
top:145px;
}
.section_title{
margin: 5px auto;
font-size: 22px;
font-style: normal;
border: 1px solid #CC0000;
text-align: center;
border-radius: 3px;
color: #FFA8EE;
background-color: #131B23;
width: 140px;
box-shadow: 0 4px 16px 0 rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.19);
}
#middle_panel{
position: absolute;
left: 0px;
padding: 0 104px;
width: 100%;
box-sizing: border-box;
}
#left_menu{
position: absolute;
width: 104px;
height: 100%;
top: 0px;
left: 0px;
float:left;
background-color: #6D1F23;
z-index:1;
}
#right_panel{
position: absolute;
width:104px;
height:100%;
right:0%;
top:0%;
float:right;
background-color: #6D1F23;
z-index:1000;
}