un poco turbio

This commit is contained in:
mynah
2018-07-27 16:45:29 -05:00
parent a2567e8936
commit 6811b19471
16 changed files with 229 additions and 49 deletions

View File

@@ -3,13 +3,35 @@ section.title{
justify-content:center;
-webkit-justify-content:center;
}
article.title{
flex:2;
}
article.title> p {
font-size:3em;
color:black;;
font-weight:bold;
margin:10px;
text-align:center;
}
article.bcast{
flex:1;
border: 1px solid red;
box-sizing: border-box;
border-radius: 6px;
margin:30px;
padding:5px;
background-color:white;
}
article.bcast > form > div >*{
width:100%;
}
article.bcast > form > div >input{
min-height: 30px;
margin-top: 6px;
}
#gpass{
color:white;
font-size:1.5em;
}
section.radio{
justify-content:center;
-webkit-justify-content:center;
@@ -46,8 +68,6 @@ div.cont p{
margin:1px 3px;;
}
article.rmod{
flex:1;
margin:30px;

55
public/home/bcast/cssCast.css Executable file
View File

@@ -0,0 +1,55 @@
body{
background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
background-image:url("grulla_21.jpg");
background-position: right top;
}
section.header{
background-color: rgba(51,51,51,0);
display: block;
padding: 45px 15px 0px;
}
h2.textHead{
background-color: #c22a39;
color: white;
text-align: center;
font-weight: bold;
margin: auto;
font-size: 2em;
padding: 2.5vh;
}
section.content{
justify-content: center;
-webkit-justify-content: center;
background-color: rgba(51,51,51,0);
padding: 40px 0px 0px 0px;
}
article.imageHead{
min-width:270px;
background-repeat: no-repeat;
background-size:contain;
background-position:center;
flex:1 1 270px;
flex-shrink:1;
max-width:500px;
margin:20px;
min-height:300px
}
section.vid{
display:flex;
justify-content: center;
-webkit-justify-content: center;
background-color: rgba(0,0,0,0.85);
padding: calc(10% + 30px) 0px;
width:100%;
height:90vh;
max-height:800px;
}
div.flowplayer{
}

BIN
public/home/bcast/grulla_21.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 KiB

View File

@@ -0,0 +1,6 @@
flowplayer(function (api) {
api.on("load", function (e, api, video) {
console.log("streaming");
});
});

BIN
public/home/bcast/noise.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

49
public/users/login/cssuForm.css Executable file
View File

@@ -0,0 +1,49 @@
section.hero{
height:100vh;
background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
background-image:url("puerta.jpg");
background-position: center center;
}
article.login{
background: rgba(33, 33, 33, 0.8);
color:white;
margin: auto 0px auto auto;
padding: 1px 0px;
text-align: center;
min-width: 300px;
width: 36%;
min-height: 100vh;
}
article.login p{
margin: 20vh auto 20px;
font-size: 2em;
}
article.login form{
font-size:1.2em;
width:80%;
margin:auto;
}
label{
display:block;
margin:10px 5px 15px 10px;
}
form.login > input{
}
form.login > input#submit {
display:block;
margin:30px auto;
width:200px;
height:60px;
}
form.login > .name{
display:none;
}