-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (82 loc) · 1.41 KB
/
style.css
File metadata and controls
83 lines (82 loc) · 1.41 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
:root {
--default-bg: grey;
--custom-bg: red;
}
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #f5f0e9;
}
/* button container */
.button-container {
margin: 5px auto 5px auto;
width: max-content;
display: flex;
}
.color-button-group {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 10px 0 10px;
}
.btn-change-grid {
border-radius: 10px;
outline: none;
text-transform: uppercase;
color: #fff;
background-color: #02C39A;
height: 45px;
}
.btn-change-color {
text-transform: uppercase;
color: #fff;
background-color: #02C39A;
}
.btn-color {
border-radius: 10px;
outline: none;
text-transform: uppercase;
color: #fff;
background-color: #02C39A;
height: 40px;
margin: 0 10px 0 10px;
}
.random-color-button {
border-radius: 10px;
outline: none;
text-transform: uppercase;
color: #fff;
background-color: #02C39A;
height: 45px;
}
/* block container */
.container {
margin: auto;
max-width: 100%;
max-height: 100%;
overflow: auto;
border-radius: 10px;
border: 2px solid #084779;
background-color: #87c9d7;
padding: 5px;
display: flex;
width: 580px;
height: 580px;
}
.div-container {
display: flex;
flex-direction: column;
flex: 1 1 0px;
}
.div-block {
border: .1px solid #fff;
flex: 1 1 0px;
}
.grey-bg {
background-color: var(--default-bg);
}
.custom-bg {
background-color: var(--custom-bg);
}