-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (67 loc) · 1.41 KB
/
styles.css
File metadata and controls
73 lines (67 loc) · 1.41 KB
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
body {
font-family: 'Shrikhand', cursive;
}
.border-left {
background-image: url('images/grass_tile.png');
flex: 1;
height: 600px;
border-right: 15px solid rgb(88, 88, 88);
display: flex;
flex-direction: column;
justify-content: center;
color: rgb(202, 202, 202);
min-width: fit-content;
}
span {
color: cyan;
}
p {
font-size: 1.5rem;
background-color: rgb(0, 0, 0, 0.5);
padding: 1rem;
text-align: left;
}
.border-right {
position: relative;
flex: 1;
height: 600px;
background-image: url('images/watergif.gif');
background-size: cover;
overflow: hidden;
opacity: 50%;
border-left: 15px solid grey;
}
.line {
position: absolute;
width: 3px;
height: 90px;
background-color: gray;
z-index: 20;
}
.result-box{
position : absolute;
display : none;
flex-direction : column;
justify-content : center;
align-items : center;
top : 10vh;
z-index : 50;
background-image : url('images/bluecheck.gif');
width : 15vw;
height : 10vw;
border : 5px solid white;
font-size: 1.5rem;
font-weight: 800;
color: rgb(255, 166, 0);
border-radius : 5px;
min-width: 120px;
min-height: 120px;
text-align: center;
}
.res-button {
margin: 1rem 0 0 0;
color: whitesmoke;
background-color: rgb(32, 32, 32);
/* font-weight: 800; */
font-family: 'Shrikhand', cursive;
}