-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject1.css
More file actions
101 lines (99 loc) · 1.73 KB
/
project1.css
File metadata and controls
101 lines (99 loc) · 1.73 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
97
98
99
100
101
*{
margin-left: 3px;
margin-right: 3px;
padding: 0;
box-sizing: border-box;
background-color: rgb(255, 166, 0);
text-align: center;
}
.title{
height: 50px;
width: 100%;
background-color: white;
text-align: center;
border-radius: 30px;
font-family: cursive
}
h1{
text-align: center;
}
h3{
text-align: center;
}
#lcontainer{
display: flex;
height: 500px;
width: 100px;
background:rgb(5, 61, 246);
display: flex;
flex-direction: column;
justify-content: space-evenly;
border-radius: 10px;
}
.box{
background-color:white ;
height: 120px;
max-width: 99%;
align-items: center;
justify-content: center;
text-align: center;
display: flex;
border-radius: 10%;
padding-left: 3px;
padding-right: 3px;
padding-top: 3px;
padding-bottom: 3px;
height: 150px;
}
.active{
border: 5px solid rgb(7, 7, 7);
}
button:hover{
border: 5px solid rgb(85, 85, 85);
}
button::selection{
border: 5px solid rgb(7, 7, 7);
}
img{
max-width: 100%;
max-height: 100%;
}
.playground{
height: 500px;
padding-left: 2px;
padding-right: 2px;
display: flex;
}
.result{
height: 500px;
width: 500px;
background-color: blue;
border-radius: 10px;
padding-top: 1px;
padding-right: 2px;
padding-left: 2px;
}
.res1{
height: 470px;
width: 490px;
background-color: white;
align-items: center;
border-radius: 10px;
}
p{
background-color: white;
border-radius: 10px;
}
#Go{
max-height: 100%;
width: 280px;
align-items: center;
justify-content: center;
align-content: center;
}
button{
transition: transform 0.3s ease-in-out;
}
button:hover{
transform: scale(1.2);
}