-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
88 lines (76 loc) · 1.54 KB
/
css.css
File metadata and controls
88 lines (76 loc) · 1.54 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
:root {
--accent: #aa3bff;
--accent-bg: rgba(170, 59, 255, 0.1);
--accent-border: rgba(170, 59, 255, 0.5);
}
.test-button{
width: 10rem;
border-radius: 4px;
color: var(--text-h);
}
.test-button{
font-size: 16px;
padding: 5px;
margin: 10px;
border-radius: 5px;
color: var(--accent);
background: var(--accent-bg);
border: 2px solid transparent;
transition: border-color 0.3s;
transition: opacity 0.5s;
&:hover {
border-color: var(--accent-border);
}
&:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
}
.test-button.removing {
opacity: 0;
}
.parent-container {
display: flex;
flex-direction: column;
align-items: center;
border: 2px solid red;
padding: 12px;
height: 100%;
width: 90%;
margin: auto;
gap: 20px;
}
.inner-container-horizontal{
border: 1px solid green;
width: 90%;
height: 10%;
display:flex;
align-items: center;
justify-content: center;
}
.bottom-row {
display: flex;
width: 100%;
justify-content: space-around;
gap: 20px;
}
.inner-container-vertical {
width: 30%;
border: 1px solid blue;
margin: auto;
height: 100%;
}
.inner-container-vertical {
width: 30%;
min-height: 160px;
border: 1px solid blue;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
header {
background-color: grey;
width: 90%;
}