-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathstyles.css
64 lines (55 loc) · 1.07 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
html, body {
height: 100%;
margin: 0;
}
* {
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: Montserrat, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#handsontable-container.handsontable {
height: 100%;
}
.sponsors {
position: fixed;
top: 20px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.sponsors a {
margin: 0 30px;
display: inline-flex;
flex-direction: column;
border-radius: 5px;
text-decoration: none;
max-width: calc(300px + 2*20px + 2*3px);
}
.sponsors a:hover {
text-decoration: underline;
}
.sponsors a span {
font-size: 14px;
margin-bottom: 18px;
text-align: center;
}
.sponsors div {
width: 100%;
text-align: center;
}
.place-your-ad-here {
display: inline-block;
border: 3px solid #126BCF;
border-radius: 5px;
color: #126BCF;
font-weight: bold;
padding: 10px 25px;
text-align: center;
line-height: 1.5;
}