-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_Test.css
More file actions
81 lines (77 loc) · 1.68 KB
/
style_Test.css
File metadata and controls
81 lines (77 loc) · 1.68 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
body {
background-color: rgba(18, 27, 27, 0.836);
background-image: linear-gradient(45deg, rgb(16, 16, 20), rgb(15, 147, 235));
}
.container {
background-color: rgb(221, 221, 120);
box-shadow: 0px 5px 14px 0px black;
box-shadow: inset 0px 2px 18px 1px #615a5a;
width: 80%;
height: 15em;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
border-radius: 1em;
border: solid 5px rgba(165, 163, 157, 0.384);
margin: 0px 0px 2em;
}
.superContainer {
display: flex;
justify-content: center;
}
.blocks {
border: solid 5px rgba(165, 163, 157, 0.384);
margin: 0px 0px 2em;
width: 100px;
background-color: rgba(61, 143, 61, 0.822);
display: flex;
justify-content: center;
align-items: center;
font-size: 50px;
font-family: fantasy;
color: wheat;
}
.interface {
display: flex;
justify-content: stretch;
width: 80%;
/* background-color: #fff; */
}
.btn-container {
display: flex;
flex-direction: column;
justify-content: space-evenly;
background-color: rgb(205, 235, 134);
border-radius: 1em;
border: solid 5px rgba(165, 163, 157, 0.384);
box-shadow: inset 0px 2px 18px 1px #615a5a;
}
.btn-control {
width: 10em;
height: 2em;
border-radius: 0.5em;
background-color: #2b80b9ce;
border: 0px;
margin: 0px 10px;
cursor: pointer;
box-shadow: 0px 5px 10px 0px black;
}
.btn-control:hover {
background-color: #0d8ee4ce;
}
.btn-control:focus {
outline: none;
border: none;
background-color: #0d8ee4ce;
box-shadow: inset 0px 2px 18px 1px #615a5a;
border: solid 2px rgba(186, 226, 7, 0.815);
}
.imgRef {
width: 17em;
margin: 0em 4em;
}
#stadistics {
background-color: #fff;
width: 33%;
}