-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (60 loc) · 1.02 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
* {
box-sizing: border-box;
}
body {
color: #fff;
font-family: 'Khula', sans-serif;
height: 100vh;
overflow: hidden;
margin: 0;
text-align: center;
}
.bull {
width: 24px;
height: 24px;
background-image: url('images/bulls.png');
background-repeat: no-repeat;
display: inline-block;
}
.cow {
width: 24px;
height: 24px;
background-image: url('images/cow.png');
background-repeat: no-repeat;
display: inline-block;
}
.space {
width: 24px;
height: 24px;
}
.screen {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
transition: margin 0.5s ease-out;
background: linear-gradient(90deg, #486d97 0%, #3b6897 100%);
}
.screen.up {
margin-top: -100vh;
}
h1 {
color: white;
}
.description {
text-align: left;
}
.hidden {
display: none;
}
.hist {
margin: 0 5px;
font-weight: 700;
font-size: 30px;
}
#history {
height: 40vh;
overflow: auto;
}