-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmission.css
56 lines (51 loc) · 1023 Bytes
/
submission.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
@font-face {
font-family: "Star";
src: url(./Starwars/star-wars.ttf) format("woff2");
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #392A48;
height: 100vh;
margin: 0;
}
.content2 {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
font-family: "Star";
font-size: 1rem;
letter-spacing: 3px;
background-color: #645394;
margin: 0 auto;
width: 80%;
height: 200px;
color: white;
box-shadow: 6px 6px 7px 1px rgba(0, 0, 0, 0.28);
}
.content {
width: 800px;
}
@media screen and (max-width: 600px) {
.content2 {
font-size: 0.85rem;
}
}
@media screen and (max-width: 500px) {
.content2 {
font-size: 0.65rem;
}
}
@media screen and (max-width: 415px) {
.content2 {
font-size: 0.55rem;
}
}
@media screen and (max-width: 370px) {
.content2 {
font-size: 0.45rem;
}
}