-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
62 lines (55 loc) · 891 Bytes
/
style.scss
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
/* colors */
$white: #fff;
$black: #0a0a0a;
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
color: $black;
}
html,
body {
background-color: rgb(235, 160, 250);
}
.window {
position: absolute;
cursor: grab;
width: 25em;
height: 10em;
color: $black;
border: 3px solid $black;
border-top: 35px solid $black;
background-color: $white;
padding: 1em;
button {
position: absolute;
top: -35px;
right: -2px;
padding-top: -0.3rem;
border: 0;
background-color: $black;
color: $white;
cursor: pointer;
height: 30px;
width: 37px;
font-weight: 900;
font-size: 1.4rem;
line-height: 40px;
text-align: center;
}
}
#one {
left: 2em;
top: 2em;
}
#two {
left: 12em;
top: 8em;
}
#three {
height: fit-content;
width: fit-content;
top: 14em;
left: 32em;
}