-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (78 loc) · 1.47 KB
/
style.css
File metadata and controls
93 lines (78 loc) · 1.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
* {
color: #fff;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #222439;
overflow: hidden;
}
.grid-container {
display: grid;
grid-template-columns: 100px 2.5fr 0.5fr;
grid-template-rows: 0.5fr 1.5fr 2fr;
height: 94vh;
width: 100;
gap: 1rem;
padding: 1rem; /* Space between grid items and the border */
}
.grid-item,
.grid-item-large {
display: grid;
/* justify-content: center; */
align-items: stretch;
background-color: #3b3d57;
/* border: 1px solid #171931; */
border-radius: 20px;
padding: 10px;
}
.grid-item-large {
align-items: stretch;
grid-column: span 2;
border-radius: 10px;
grid-template-rows: 0.25fr 0.25fr;
}
.name {
font-size: 32px;
font-weight: bold;
height: 36px;
}
.field {
font-size: 16px;
}
button {
background-color: #616694;
border: none;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
border-radius: 30px;
transition: 0.7s;
margin-top: 100px;
margin-bottom: 100px;
}
button:hover {
background-color: #8b8fb0;
transition: 0.7s;
font-size: 17px;
cursor: pointer;
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}