-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 1.05 KB
/
style.css
File metadata and controls
63 lines (56 loc) · 1.05 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
html,
body {
width: 100vw;
height: 100vh;
padding: 0px;
position: fixed;
top: 0;
left: 0;
background-color: white;
}
.options {
margin: 0 auto;
list-style-type: none;
list-style: none;
padding-left: 0px;
width: max-content;
height: max-content;
}
.options li {
width: max-content;
height: max-content;
margin-top: 10px;
}
.options button {
cursor: pointer;
width: 300px;
height: 40px;
text-align: left;
user-select: none;
border-radius: 20px;
border-width: 3px;
border-style: solid;
border-color: rgb(27, 56, 96);
background-color: aliceblue;
}
.options button:hover {
background-color: rgb(227, 234, 241);
border-color: rgb(58, 85, 120);
}
.options button span {
margin-left: 7px;
}
.title {
font-family: monospace;
font-size: 50px;
margin-top: 5px;
margin-bottom: 10px;
text-align: center;
color: rgb(66, 66, 66);
}
.exampleImage {
width: 500px;
height: max-content;
pointer-events: none;
user-select: none;
}