-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (79 loc) · 1.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
background-color: black;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
min-height: 100vh;
}
.toolbar {
background-color: #222;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
position: fixed;
top: 0;
left: 0;
}
.toolbar-text {
font-family: Consolas;
font-weight: bold;
color: white;
font-size: 19px;
}
.square {
background-color: #222;
width: 580px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.square:hover {
}
.rectangle {
background-color: #222;
width: 700px;
height: 30px;
border-radius: 10px;
margin: 0 auto;
display: block;
text-align: center;
padding: 20px;
color: white;
font-family: Consolas;
font-weight: bold;
position: fixed;
top: 100px;
}
a {
background-color: #0c1414;
color: white;
font-family: Consolas;
font-weight: bold;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
position: fixed;
bottom: 20px;
left: 20;
transform: translateX(-50%);
transition: all 0.2s ease-in-out;
transform-origin: center;
text-decoration: none;
display: block;
width: fit-content;
transform: scale(1);
}
a:hover {
transform: scale(1.1);
}