-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 1016 Bytes
/
style.css
File metadata and controls
54 lines (54 loc) · 1016 Bytes
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
*{
margin: 0;
}
body{
background-color: black;
}
h1{
background-color: gray;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: white;
word-spacing: 2px;
text-align: center;
padding: 15px;
text-transform: uppercase;
line-height: 60px;
}
#rgbValue{
font-size: 66px;
}
#container1{
background-color: whitesmoke;
height: 40px;
text-align: center;
}
button{
border: none;
background: none;
text-transform: uppercase;
height: 100%;
font-size: larger;
}
button:hover{
color: white;
background-color: darkred;
}
#status{
display: inline-block;
width: 20%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: larger;
}
#container2{
margin: 20px auto;
max-width: 600px;
}
.box{
width: 30%;
background: whitesmoke;
padding-bottom: 30%;
float: left;
margin: 1.6%;
border-radius: 20px;
transition: background 0.6s;
}