-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment.css
109 lines (86 loc) · 1.5 KB
/
experiment.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
*,
{
box-sizing: border-box;
padding: 0;
margin: 0;
border: 0;
vertical-align: baseline;
}
body {
font-size: 12px;
background: ghostwhite;
color: #2d2a2a;
padding: 1em;
}
header select,
span {
font-weight: 400;
width: 96vw;
font-family: sans-serif;
margin-bottom: 0.2em;
}
section p {
font-size: 1.8rem;
line-height: 0.98em;
font-weight: 600;
padding: 0.2em;
font-family: serif;
}
summary {
width: auto;
font-weight: 600;
border: 2px dotted blue;
border-radius: 0.3rem;
line-height: 0.2em;
font-size: 1.2em;
padding: 0.8em 1em 0.6em 1em;
}
.fucktest {
border: 2px dotted blue;
height: 2em;
font-size: 1.2em;
padding: 0.1em;
}
summary:hover {
background: yellow;
}
details > summary {
list-style: none;
}
details > summary::-webkit-details-marker {
display: none;
}
div {
padding: 0.4em 0 0 0.4em;
}
a {
text-decoration: underline;
color: inherit;
}
/** ////////////////////// grid structure **/
.grid-container {
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 0.333rem;
}
.grid-container div {
width: 100%;
background: lightyellow;
padding: 0.4rem;
border-top: 2px dotted blue;
}
img {
width: 100%;
height: auto;
}
.playground {
background: white;
margin: 1em;
padding: 1em;
border-radius: 1em;
}
.footer {
width: 100%;
}
/** ////////////////////// mobile **/