-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (48 loc) · 965 Bytes
/
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
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
user-select: none;
}
body{
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
background-color: #000000;
}
#container{
width: 500px;
height: 200px;
background-color: rgb(255, 255, 255);
border-radius: 20px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#generateColorBtn{
width: 100%;
border-radius: 5px;
font-size: 30px;
}
#generateColorBtn:active{
background-color: rgb(231, 221, 221);
}
#colorCode{
text-align: center;
margin-top: 30px;
font-size: 50px;
font-weight: 700;
}
#copyBtn{
width: 75px;
font-size: 20px;
margin-top: px;
border-radius: 5px;
}
#copyBtn:focus{
background-color: rgb(231, 221, 221);
}