-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (55 loc) · 980 Bytes
/
style.css
File metadata and controls
60 lines (55 loc) · 980 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
53
54
55
56
57
58
59
60
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.microsoft{
position: relative;
width: 500px;
height: 500px;
background-color: white;
display: flex;
justify-content: center;
margin: 0px auto;
}
.box1{
position: absolute;
background-color: #FF4426;
width: 40px;
height: 40px;
top: 200px;
left: 80px;
}
.box2{
position: absolute;
background-color: #73BA1C;
width: 40px;
height: 40px;
top: 200px;
left: 123px;
}
.box3{
position: absolute;
background-color: #01A6EF;
width: 40px;
height: 40px;
top: 243px;
left: 80px;
}
.box4{
position: absolute;
background-color: #FFB622;
width: 40px;
height: 40px;
top: 243px;
left: 123px;
}
.title{
color: #747474;
position: absolute;
top: 205px;
left: 187px;
font-size: 60px;
font-weight: 800;
font-family:serif;
}