-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (67 loc) · 1.1 KB
/
style.css
File metadata and controls
71 lines (67 loc) · 1.1 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
*{
margin:0px;
padding:0px;
}
body{
font-family: sans-serif;
background-color: #f9f9fd;
background-image: radial-gradient(#9448cc 2px, #f9f9fd 2px);
background-size: 50px 50px;
}
.container{
width:280px;
position: absolute;
top:50%;
left:50%;
transform: translate(-50%,-50%);
background-color: #9448cc;
padding: 16px;
border-radius:8px;
}
p{
text-align: center;
color: #fff;
font-size: 30px;
font-weight: 450;
margin:15px;
}
#inputarea{
width:255px;
height: 35px;
display: flex;
align-items: center;
margin: 4px 14px;
outline: none;
padding: 0px 5px;
color:#333;
border: none;
border-radius: 5px;
outline:none;
}
#inputarea:focus{
border: 2px solid #7575ff;
}
.avtar{
width:250px;
height: 180px;
margin: 10px 10px;
padding: 0px 7px;
background-color: #ffe;
}
#img{
width:251px;
height: 180px;
}
input[type=button]{
border:none;
outline: none;
width:261px;
height:40px;
margin:0px 11px;
font-size:15px;
color:#666;
}
span{
margin-left:80px;
color:#ddf;
}