-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
55 lines (54 loc) · 894 Bytes
/
style.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
body {
background-image: url(hiwbackground.png);
background-repeat: no-repeat;
background-size: cover;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 30.5rem;
width: 30.5rem;
background-color: white;
box-shadow: 15px 15px 31px 0 #58585f;
}
button {
cursor: pointer;
width: 20rem;
height: 3rem;
}
h1 {
font-size: xx-large;
}
.box ol {
display: flex;
flex-direction: column;
font-size: larger;
margin: 5px;
height: 150px;
}
a {
text-decoration: none;
}
@media (max-width: 450px) {
.box {
height: 20.5rem;
width: 20.5rem;
}
button {
width: 10rem;
}
h1 {
font-size: large;
}
.box ol {
font-size: smaller;
}
}