-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (89 loc) · 1.56 KB
/
style.css
File metadata and controls
105 lines (89 loc) · 1.56 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
*{
font-family: "Rubik Vinyl", serif;
font-style: normal;
}
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #D0D0D0;
color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
transition: background-color 0.3s ease;
}
h1{
font-size: 3.5rem;
}
button{
aspect-ratio: 10;
cursor: pointer;
border-radius: 44rem;
font-weight: bold;
background: transparent;
}
body.st-page button{
border: none;
}
canvas {
border: 2px solid black;
margin-top: 20px;
}
#board{
border: none;
box-shadow: 5px 5px 15px 8px rgba(5, 5, 227, 0.251)
}
.container {
width: 85vw;
height: 65vh;
justify-content: center;
align-items: center;
}
.main-image {
position: relative;
width: 400px;
height: 550px;
background: url(photos/machine.png) no-repeat center/cover;
}
.small-image {
position: absolute;
width: 100px;
height: 100px;
border: 2px solid #fff;
}
.small-image.one {
top: 30%;
left: 30%;
transform: translate(-40%, 73%);
background: url(photos/sLogo.png) no-repeat center/cover;
}
.small-image.two {
bottom: 30%;
right: 30%;
transform: translate(40%, -40%);
background: url(photos/STLogo.png) no-repeat center/cover;
}
#instruction{
font-weight: bold;
margin-top: 15px;
}
.dark-mode {
background-color: #121212;
color: white;
}
.light-mode {
background: radial-gradient(circle, #E9D254, white);
color: black;
}
#toggle-icon {
width: 50px;
height: 50px;
}
#main-image-element{
width: 550px;
height: 550px;
}