-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (49 loc) · 844 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
56
body {
background-color: black;
}
.rgb-box {
display: flex;
flex-direction: column;
align-items: center;
margin: 15px;
font-family: 'Roboto', sans-serif;
font-weight: 700;
}
.color-box {
display: flex;
margin: 15px;
}
.hex-text{
background-color: white;
width: 200px;
text-align: center;
font-family: 'Roboto', sans-serif;
font-size: 40px;
opacity: 0.5;
}
.red {
background-color: red;
text-align: center;
width: 2em;
height: 1em;
border: 0.1rem solid black;
border-radius: 15%;
}
.green {
background-color: green;
text-align: center;
width: 2em;
height: 1em;
color: white;
border: 0.1rem solid black;
border-radius: 15%;
}
.blue {
background-color: blue;
text-align: center;
width: 2em;
height: 1em;
color: white;
border: 0.1rem solid black;
border-radius: 15%;
}