-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsquare-box.css
More file actions
96 lines (89 loc) · 1.56 KB
/
square-box.css
File metadata and controls
96 lines (89 loc) · 1.56 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
89
90
91
92
93
94
95
96
* {
font-weight: 600;
color: rgb(248, 248, 248);
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "Source Code Pro", monospace;
}
.container {
background: rgb(161, 71, 209);
background: linear-gradient(
135deg,
rgba(161, 71, 209, 1) 7%,
rgba(255, 18, 91, 1) 51%,
rgba(105, 9, 121, 1) 51%,
rgba(0, 255, 209, 1) 100%
);
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.box1 {
width: 700px;
height: 500px;
margin-right: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.target {
position: relative;
width: 100px;
height: 100px;
border-radius: 10px;
background-color: rgb(195, 205, 228);
box-shadow: 10px 10px 10px rgb(97, 94, 94);
}
.box {
display: flex;
flex-direction: column;
align-items: center;
}
.box2 {
background-color: transparent;
border: 2px solid black;
border-radius: 20px;
box-shadow: 6px 6px 12px rgb(155, 151, 151);
width: 300px;
height: 400px;
margin: 10px;
padding: 25px;
text-align: center;
}
table {
text-align: end;
}
.shadow_input {
width: 106px;
}
.Color {
background-color: transparent;
border: none;
/* background-color: none; */
}
input {
width: 250px;
}
h3 {
display: inline-block;
}
.box3 {
border: 2px solid black;
border-radius: 20px;
box-shadow: 6px 6px 12px rgb(155, 151, 151);
width: 400px;
height: 180px;
padding: 25px;
margin-top: 30px;
background-color: #333;
color: rgb(255, 97, 97);
}
.box3 span {
color: #00a8cc;
}
span.number {
color: white;
}