-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (44 loc) · 937 Bytes
/
styles.css
File metadata and controls
49 lines (44 loc) · 937 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
body{
background-color: #FFB74D;
}
#myDivId{ background: #ccc;
color: white;
padding: 6px;
overflow: hidden;
position: relative;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
margin-bottom: 2%;
}
.content{
z-index:9;
position:relative;
}
.progress{
width: 0px;
height: 100%;
position: absolute;
background: blue;
left: 0px;
top: 0px;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.custom{
background-color: #FFE0B2;
margin-top: 20%;
margin-bottom: 20%;
border-radius: 25px;
}
.font{
font-family: 'Caveat Brush', cursive;
font-size: 31px;
color:#009688;
}
h1{
text-align: center;
font-family: 'Caveat Brush', cursive;
border-bottom: 2px solid rgba(0, 0, 0, 0.61);
}