-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
58 lines (52 loc) · 687 Bytes
/
css.css
File metadata and controls
58 lines (52 loc) · 687 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
55
56
57
58
body{
font-family:'Arial';
}
.user{
width:200px;
height:40px;
border:2px solid #373737;
border-radius:5px;
padding:5px;
background:#eee;
float:right;
}
h1{
font-family:'Arial';
text-align:center;
font-size:50px;
}
a:link{
color:#373737;
text-decoration:none;
}
a:hover{
color:orange;
}
a:visited{
color:#373737;
}
#logout{
float:left;
font-size:12px;
}
#titulo{
outline:none;
border-radius:4px;
width:50%;
height:100px;
font-size:50px;
border:1px solid #373737;
}
textarea{
outline:none;
}
hr{
border:1px solid #373737;
}
.content{
width:850px;
background:white;
margin:10px auto;
border:2px solid #373737;
border-radius:5px;
}