-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (63 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (63 loc) · 1.22 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
.overall-container {
background-color: rgb(100, 183, 255);
border: #777;
border-radius: 3px;
}
.grid-container {
max-width: 35em;
height: 32em;
margin: auto;
width: 50%;
border: solid;
border-radius: 8px;
border-color: #777;
justify-content: space-evenly;
}
.grid-item-type1 {
gap: 25px;
min-height: 3em;
}
.grid-item-type2 {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
justify-content: space-between;
}
.icon-link {
display: grid;
justify-content: space-around;
image-rendering: optimizeQuality;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 50%;
margin: auto;
width: 3rem;
}
.submit-button {
background-color: rgb(59, 59, 197);
color: white;
text-align: center;
text-decoration: none;
}
.block {
display: block;
width: 100%;
border: none;
}
.grid-item {
margin: 2em;
border: 2px solid #777
}
.button-thing {
background-color: rgb(59, 59, 197);
color: white;
padding: 12px 28px;
margin: 15px;
text-align: center;
text-decoration: none;
border: 3px solid lightgray;
border-radius: 12px;
display: inline-block;
}
.h2 {
margin-left: 2em;
}