-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (52 loc) · 1015 Bytes
/
styles.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
*{
font-family: cursive;
}
body{
background-image: linear-gradient(red, blue);
}
h1#he{
text-align: center;
float: left;
color: rgba(3, 73, 73, 0.8);
margin-left: 25px;
}
#container{
border-radius: 50px;
padding-top: 10px;
padding-left: 10px;
text-align: left;
width:80%;
height: 70%;
background-image: linear-gradient(blue,red);
overflow-y: scroll;
overflow-x: inherit;
word-wrap: break-word;
padding-right: 10px;
}
::-webkit-scrollbar {
width: 0px;
background: transparent;
}
#yoyo{
margin-top:10px;
width: 60%;
height: 10%;
border-radius: 20px;
padding: 10px 10px 10px 10px;
}
#logout{
color: beige;
background-color:rgba(127,127,127,0.8);
border-radius: 20px;
float: right;
margin-left: 300px;
margin-top: 15px;
}
#btn{
margin-top:10px;
height: 8%;
width: 5%;
border-radius: 10px;
color:rgba(255,255,255,0.8);
background-color: rgba(200,10,200,0.7);
}