-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (59 loc) · 1.08 KB
/
style.css
File metadata and controls
75 lines (59 loc) · 1.08 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
body {
margin: 0;
font-family: system-ui, Arial, sans-serif;
background: #ececec;
color: rgb(0, 0, 60);
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
color: #ececec;
font-family: "Inter", sans-serif;
font-size: 40px;
font-weight: 900;
text-align: center;
text-shadow:
3px 3px 6px #b8b8b8,
-3px -3px 6px #ffffff;
display: inline-block;
padding-bottom: 10px;
}
a {
display: block;
width: 280px;
margin: 10px 0;
padding: 14px 18px;
background: #ececec;
color: rgb(0, 0, 60);
text-decoration: none;
text-align: center;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
transition: all 0.25s ease;
box-shadow:
9px 9px 16px #bebebe,
-9px -5px 25px #ffffff;
}
a:hover {
box-shadow:
inset 6px 6px 12px #c2cbd8,
inset -6px -6px 12px #ffffff;
}
.top {
display: flex;
position: fixed;
width: 100%;
height: 25px;
top: 0;
justify-content: left;
position: relative;
}
.top img {
padding: 5px 20px;
width: 300px;
height: auto;
position: absolute;
}