-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstruction.css
74 lines (73 loc) · 1.19 KB
/
instruction.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
62
63
64
65
66
67
68
69
70
71
72
73
74
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: Pranshu font;
src: url(./fonts/PixeloidSans-mLxMm.ttf);
}
body {
background-color: black;
font-family: Pranshu font;
/* font-family: Pranshu font; */
}
.container{
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.border1{
width: 44%;
height: 84%;
border: 3px solid #1E63FF;
border-radius: 4%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.border2{
position: absolute;
width: 42%;
height: 82%;
border: 2px solid #1E63FF;
border-radius: 4%;
}
#instruction{
padding-top: 20px;
display: flex;
justify-content: center;
}
#inst{
font-size: 32px;
color: #FFD81F;
text-align: center;
letter-spacing: 8px;
border-bottom: 2px solid #FFD81F;
padding-bottom: 5px;
}
#x{
font-size: 32px;
color: white;
position: absolute;
right: 4%;
top: 1%;
cursor: pointer;
}
#x:hover{
transform: scale(1.3);
}
#text{
color: #FFF;
text-align: center;
font-size: 38px;
font-style: normal;
font-weight: 400;
line-height: 143.5%;
padding: 30px;
padding-top: 50px;
letter-spacing: 2px;
}