-
Notifications
You must be signed in to change notification settings - Fork 4
/
subject_css.css
61 lines (61 loc) · 957 Bytes
/
subject_css.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
body{
margin: 0px;
font-family: 'Roboto', sans-serif;
background-color: rgb(66, 176, 244);
}
.main{
background-color: rgba(255, 255, 255,.5);
height: 700px;
width: 700px;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.content{
position: absolute;
height: 100%;
width: 100%;
text-align: center;
}
.play{
border: 0px;
background-color: rgba(0,0,0,.25);
font-weight: bold;
color: rgb(255,255,255);
font-size: 44px;
margin: 2.5% 2.5%;
cursor: pointer;
}
#a{
position: absolute;
top: 0px;
left: 0px;
width: 45%;
height: 45%;
align-self: left;
}
#b{
position: absolute;
width: 45%;
top: 0px;
left: 50%;
height: 45%;
align-self: left;
}
#c{
position: absolute;
width: 45%;
top: 50%;
left: 0px;
height: 45%;
align-self: left;
}
#d{
position: absolute;
width: 45%;
top: 50%;
left: 50%;
height: 45%;
align-self: left;
}