-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleVictory.css
54 lines (49 loc) · 952 Bytes
/
styleVictory.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
*{
-webkit-touch-callout:none;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
-webkit-user-drag: none;
overflow: hidden;
background-color: black;
color: white;
image-rendering: pixelated;
font-family: "VT323",fantasy;
font-size: 2vh;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
}
.img-container{
display: flex;
position: relative;
top: 3vh;
align-items: center;
justify-content: center;
}
img {
width: 20vh;
}
h1 {
text-align: center;
font-weight: normal;
font-size: 10vh;
}
p{
position: relative;
font-size: 4vh;
padding: 4vh;
}
button{
display: initial;
background-color: #2A3492;
font-size: 5vh;
border-radius: 10vh;
padding: 1vh;
margin: 10vh;
width: 50vh;
text-align: center;
}