-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (65 loc) · 1.45 KB
/
style.css
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
*{
margin: 10px;
background-color: rgb(205, 192, 177);
/* display: flex; */
/* justify-content: center;
align-content: center; */
/* align-content: space-between */
/* align-items: center; */
}
#rgb{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 2rem;
}
.upper
{
margin-top: 10%;
display: flex;
justify-content: center;
align-items: center;
}
#optionContainer>div{
border: 2px black solid;
border-radius: 22px;
height: 20px;
width: 20px;
padding:10px ;
margin: 10px;
cursor: pointer;
}
.h1{
text-transform: capitalize;
display: flex;
color: red;
justify-content: center;
text-shadow: 2px 3px 2px rgb(12, 12, 12);
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.h2{
text-decoration: aqua;
text-shadow: 1px 1px 2px rgb(20, 238, 53);
text-transform: capitalize;
text-indent: 20px
}
#optionContainer>div:hover{
scale: 1.2;
transition: 0.4s;
border: 2px solid rgb(52, 5, 239);
}
#optionContainer{
display: grid;
grid-template-columns: repeat(4,70px);
justify-content: center;
}
#reset{
background-color: rgb(193, 230, 7);
padding: 10px;
text-shadow: 1px 1px 2px rgb(225, 13, 27);
border-radius: 6px;
/* display: flex;
justify-content: center;
align-items: center; */
display: absolute;
margin-left: 45%;
border: 3px solid green;
}