-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (103 loc) · 2.24 KB
/
style.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
@font-face {
font-family: letra1;
src: url('assets/TiltPrism-Regular-VariableFont_XROT\,YROT.ttf');
}
.header{
background-color: #435058;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 10px;
font-size: 0.8em;
}
.footer{
display: flex;
justify-content: flex-end;
background-color: #435058;
}
body {
display: flex;
flex-direction: column;
}
body .main{
border-radius: 8px;
margin: 25px;
display: flex;
}
.fondo{
background: url('https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/v1016-c-08_1-ksh6mza3.jpg?w=800&dpr=1&fit=default&crop=default&q=65&vib=3&con=3&usm=15&bg=F4F4F3&ixlib=js-2.2.1&s=f584d8501c27c5f649bc2cfce50705c0');
display: flex;
background-repeat: no-repeat;
background-size: cover;
}
*{
font-family: letra1;
}
nav{
width: 250px;
flex-shrink: 0;
display: flex;
flex-direction: column;
row-gap: 32px;
padding: 8px;
max-height: 100vh;
overflow: scroll;
}
nav a{
text-decoration: none;
padding-left: 8px;
padding-right: 8px;
padding-top: 4px;
padding-bottom: 4px;
&:hover{
color: red;
}
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-track {
-webkit-appearance: none;
display: none !important;
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.1);
}
a {
color: white;
}
h1 ,h2, p, fieldset, div.resultado {
color: white;
}
fieldset {
border: 0;
border-radius: 15px;
background-color: #6aba9a;
box-shadow: 0px 20px 25px -20px rgb(255, 255, 255);
}
input{
background-color:silver;
border: 4px;
border-width: transparent;
border-radius: 4px;
padding: 4px;
}
input:hover, input:focus-visible{
background-color:dodgerblue;
border-width: 20px;
border-color: black;
transition: 650ms;
}
input:focus-visible{
outline: 0;
}
button {
border: 0;
border-radius: 8px;
background-color: #baa96a;
color: white;
padding: 10px 10px 10px 10px;
box-shadow: 0px 20px 25px -20px rgb(0, 0, 255);
}