-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
49 lines (39 loc) · 840 Bytes
/
Copy pathstyling.css
File metadata and controls
49 lines (39 loc) · 840 Bytes
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
/* -- styling.css -- */
#dont-click-container {
position: absolute;
}
#dont-click-me-button {
position: absolute;
padding: 2px;
}
.page-contents{
width: 60%;
margin-left: 20%;
margin-right: 20%;
margin-top: 20px;
text-align: center;
}
.grid-item, #dont-click-container {
border: solid 2px rgb(33, 37, 41);
border-radius: 20px;
color: rgb(33, 37, 41);
}
.grid-item-title {
padding-top: 10px;
}
.grid-item-title::before, .grid-item-title::after {
content: ' - ';
}
button {
background-color: rgb(33, 37, 41);
border: 1px solid rgb(33, 37, 41);
border-radius: 15px;
padding: 10px;
color: white;
transition: background-color .3s ease;
}
button:hover {
background-color: rgb(53, 57, 61);
border-color: rgb(53, 57, 61);
transition: all .3s ease;
}