-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
65 lines (56 loc) · 1.06 KB
/
index.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
@import url("//fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
body,
html {
background-color: #2a3140;
font-family: "Inter", sans-serif;
color: #dcdcdc;
width: 100%;
padding-top: 32px;
margin: 0
}
.content {
padding: 16px 48px 48px;
margin: auto;
width: 400px;
border: 2px solid #ffffffad;
border-radius: 16px
}
hr {
border: 1px solid #667667;
margin: 32px auto;
height: 0;
width: 100%
}
button {
width: 128px;
height: 64px;
border: 2px solid #667667;
background-color: #383a3c;
border-radius: 8px;
color: #efefef;
font-size: 16px;
cursor: pointer;
transition-duration: 100ms
}
button:hover {
border: 2px solid #abd3ed;
background-color: #474a4e
}
h1 {
color: #fff
}
#readme {
width: 80%;
min-width: 400px
}
.link {
color: #abd3ed;
font-weight: 500;
font-size: 15px
}
#mainbreak {
width: 80%;
border-color: #dcdcdc;
margin-top: 64px;
margin-bottom: 64px
}