-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (58 loc) · 1.36 KB
/
style.css
File metadata and controls
65 lines (58 loc) · 1.36 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
<style>
* {
margin: 0;
padding: 0;
list-style: none;
}
body {
width: 100%;
color: #069;
text-align: center;
min-height: 100vh;
font-weight: bold;
font-family: Verdana, Geneva, Tahoma, sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: 50%;
overflow-y: scroll;
height: 90vh;
padding: 15px 2%;
box-shadow: 0 0 5px #069;
}
.container::-webkit-scrollbar {
width: 14px;
border: 1px solid #069;
}
.container::-webkit-scrollbar-thumb {
background-color: #069;
border-radius: 6px;
}
.hr_dados1 {
border-top: medium dashed #069;
border-bottom: medium dashed #069;
height: 5px;
overflow: visible;
padding: 0;
text-align: center;
}
.hr_dados1::after {
content: "VICTOR CHEVALIER LOPES";
font-size: 1.4em;
padding: 0 0.3em;
top: -0.7em;
background: #fff;
display: inline;
position: relative;
}
.hr_01 {
border-top: medium dashed #069;
border-bottom: medium dashed #069;
height: 3px;
overflow: visible;
padding: 0;
text-align: center;
}
</style>