forked from privacy-scaling-explorations/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
105 lines (87 loc) · 1.56 KB
/
styles.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
color: white;
background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(93,93,93,1) 100%);
background-attachment: fixed;
height: 100vh;
font-family: 'Inter', sans-serif;
}
.starter {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding-block: 5rem;
gap: 5rem;
}
.starter > * {
margin: 0 auto;
text-align: center;
}
.row {
padding-bottom: 1.5rem;
}
.title {
margin: 1rem auto;
text-align: center;
max-width: 42rem;
}
.ethlogo {
max-height: 16rem;
}
.arrow {
margin: 1rem auto;
text-align: center;
}
.arrow img {
height: auto;
width: 48px;
}
.center {
display: flex;
align-items: center;
justify-content: center;
gap: 5rem;
}
.link a{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
a {
text-decoration: none;
color: white !important;
}
a:hover {
text-decoration: underline;
}
.icon {
height: 2.75rem;
padding-bottom: .5rem;
}
a[href=""], a[href="#"], a[href=""]:hover, a[href="#"]:hover {
opacity: 25%;
cursor: default;
text-decoration: none;
}
@media screen and (max-width: 800px) {
.starter {
padding-block: 1rem;
gap: 1rem;
}
.icon {
height: 2rem;
}
.row {
border-bottom: 1px solid rgba(255,255,255,.25);
padding-block: 2rem;
padding-inline: 1rem;
}
.row > .link {
width: auto
}
.center {
gap: 2rem;
}
}