-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (53 loc) · 1.12 KB
/
style.css
File metadata and controls
63 lines (53 loc) · 1.12 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
.orange {
background-color: orange;
padding: 15px;
}
.purple {
background-color: plum;
padding: 20px ;
padding-bottom: 50px;
}
.green {
background-color: greenyellow;
padding: 3px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
grid-template-rows: 1fr 1fr;
grid-gap: 10px;
grid-auto-flow: row;
}
.blue {
background-color: skyblue;
padding: 20px;
}
.header {
text-align: left;
}
.textH {
font-size: 2em;
border-radius: 4px;
display: inline-block;
cursor: pointer;
margin: 5px;
background-color: rgb(0, 217, 255);
}
.textH4 {
background-color: rgba(128, 128, 128, 0.712);
}
.textH5 {
background-color: rgba(47, 255, 75, 0.808);
}
.zone {
display: inline;
font-size: 17em;
border-radius: 4px;
cursor: pointer;
border: 1px red solid;
text-align: center;
transition: all 1s;
}
.zone:hover {
box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
transition: all 1s;
border-width: 10px;
}