-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
100 lines (94 loc) · 1.39 KB
/
app.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
*{
margin-left: 2px;
}
body{
height: 100%;
width: 100%;
justify-content: center;
background: #eee;
}
.top{
width: 100%;
height: 55px;
position: fixed;
top: 0;
left:0;
background: teal;
color: #fff;
font-weight: bold;
word-spacing: 4px;
padding: 10px;
box-shadow: 0px 4px 8px black;
}
.form-control {
width: 80%;
height: 40px;
position: relative;
top: 40px;
display: inline-block;
}
.btn {
width: 20%;
height: 40px;
position: relative;
display: inline;
top: -16px;
left:61%;
font-size: 10px ;
font-weight: bold;
color: #000;
}
ul{
list-style-type: none;
font-weight: bold;
}
.row{
position: relative;
}
.elem {
margin-left: 30px;
position: relative;
top: 100px;
}
.recent {
position: relative;
bottom: -60px;
font-size: 15px;
font-family: Monospace;
}
.alert {
width:70%;
height: 180px;
margin-left: auto;
margin-right: auto;
font-weight: bold;
color: #fff;
border: none ;
font-size: 15;
background: #bd97f8;
box-shadow: 0px 4px 8px black;
}
.alert .cancel{
float: right;
font-size: 25px;
font-weight: bold;
}
.alert #msg {
padding: 15px;
font-family: Monospace;
margin-top: 35px;
}
.autor {
position: fixed;
font-size: 12;
bottom: 0px;
left: 35%;
font-weight: bold;
font-family: cursive ;
}
hr{
width: 70px;
margin-left: auto;
margin-right: auto;
border: 1px solid #fff;
}