diff --git a/.DS_Store b/.DS_Store index 47fedbb5..72012284 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/App/android/app/build.gradle b/App/android/app/build.gradle index 911b0071..cdb27daf 100755 --- a/App/android/app/build.gradle +++ b/App/android/app/build.gradle @@ -102,8 +102,8 @@ android { applicationId "pt.enei" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 3 - versionName "3" + versionCode 4 + versionName "4" ndk { abiFilters "armeabi-v7a", "x86" } diff --git a/App/ios/app/Info.plist b/App/ios/app/Info.plist index e0799c01..7a409cd1 100755 --- a/App/ios/app/Info.plist +++ b/App/ios/app/Info.plist @@ -15,13 +15,13 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1 + 1.2 CFBundleSignature ???? CFBundleVersion - 12 + 14 LSApplicationCategoryType - + public.app-category.utilities LSRequiresIPhoneOS NSAppTransportSecurity @@ -50,7 +50,7 @@ NSLocationWhenInUseUsageDescription Not used, just added this key because i used react-native and needed this keys for approval. NSMicrophoneUsageDescription - Not used, just added this key because i used react-native and needed this keys for approval. + Not really used, but the module asks for it when openning the camera. NSMotionUsageDescription Not used, just added this key because i used react-native and needed this keys for approval. NSPhotoLibraryAddUsageDescription diff --git a/api/.DS_Store b/api/.DS_Store index a5d45da9..6455dd86 100755 Binary files a/api/.DS_Store and b/api/.DS_Store differ diff --git a/api/Controllers/AuthController.cs b/api/Controllers/AuthController.cs index 40547dc3..ccc1c14a 100755 --- a/api/Controllers/AuthController.cs +++ b/api/Controllers/AuthController.cs @@ -25,7 +25,7 @@ namespace api.Controllers public class AuthController : ControllerBase { - private readonly DataContext context; + private readonly DataContext context; private readonly IConfiguration config; public UserManager _userManager { get; } public SignInManager _signInManager { get; } @@ -34,19 +34,19 @@ namespace api.Controllers private readonly RoleManager _roleManager; private readonly System.Net.Http.IHttpClientFactory clientFactory; - public AuthController(DataContext context,IConfiguration config, UserManager UserManager, SignInManager SignInManager, IMapper mapper, RoleManager roleManager, IUsersRepository repo, System.Net.Http.IHttpClientFactory clientFactory) + public AuthController(DataContext context, IConfiguration config, UserManager UserManager, SignInManager SignInManager, IMapper mapper, RoleManager roleManager, IUsersRepository repo, System.Net.Http.IHttpClientFactory clientFactory) { - _mapper = mapper; + _mapper = mapper; _roleManager = roleManager; _repo = repo; this.clientFactory = clientFactory; this.config = config; _userManager = UserManager; _signInManager = SignInManager; - this.context = context; - + this.context = context; + } - + [HttpPost("register")] public async Task Register(UserForRegisterDto userToRegister) @@ -54,7 +54,7 @@ namespace api.Controllers var userToCreate = _mapper.Map(userToRegister); var result = await _userManager.CreateAsync(userToCreate, userToRegister.password); - + if (result.Succeeded) { return StatusCode(201); @@ -62,6 +62,9 @@ namespace api.Controllers return BadRequest(result.Errors); } + + + [HttpPost("login")] public async Task Login(UserForLoginDto UserForLoginDto) { @@ -87,44 +90,48 @@ namespace api.Controllers } [HttpPost("loginQR")] - public async Task loginQr(loginQr a){ - - var u = await _userManager.FindByNameAsync(a.QRcode); - - using (var client = new HttpClient()) - { - try{ - - var url = "https://tickets.enei.pt/internal/api/Attendee/Detail"; - - client.DefaultRequestHeaders.Add("Authorization", "Bearer " + a.token); - + public async Task loginQr(loginQr a) + { - var response = await client.GetStringAsync(url); + var u = await _userManager.FindByNameAsync(a.QRcode); - // Console.WriteLine(response); - - //var resource = JObject.Parse(response); - var appUser = await _userManager.Users.FirstOrDefaultAsync(SU => SU.NormalizedUserName == a.QRcode.ToUpper()); - - - return Ok(new + using (var client = new HttpClient()) + { + try { - token = GenerateJwtToken(appUser).Result - }); + var url = "https://tickets.enei.pt/internal/api/Attendee/Detail"; - }catch(Exception e){ + client.DefaultRequestHeaders.Add("Authorization", "Bearer " + a.token); - Console.WriteLine(e); - return Unauthorized(); + var response = await client.GetStringAsync(url); - } - + // Console.WriteLine(response); + + //var resource = JObject.Parse(response); + var appUser = await _userManager.Users.FirstOrDefaultAsync(SU => SU.NormalizedUserName == a.QRcode.ToUpper()); + + + return Ok(new + { + + token = GenerateJwtToken(appUser).Result + }); } - return Unauthorized(); + catch (Exception e) + { + + Console.WriteLine(e); + + return Unauthorized(); + + } + + + } + return Unauthorized(); } @@ -138,8 +145,9 @@ namespace api.Controllers var roles = await _userManager.GetRolesAsync(user); - foreach(var role in roles) { - claims.Add(new Claim(ClaimTypes.Role,role)); + foreach (var role in roles) + { + claims.Add(new Claim(ClaimTypes.Role, role)); } //obtem a key na app settings @@ -151,7 +159,7 @@ namespace api.Controllers //criamos um token var tokenDescriptor = new SecurityTokenDescriptor { - Subject = new ClaimsIdentity(claims), + Subject = new ClaimsIdentity(claims), //data de expiração (atual + 24 horas) Expires = DateTime.Now.AddDays(30), diff --git a/api/Controllers/mvcController.cs b/api/Controllers/mvcController.cs index c5d6cb02..405d9c12 100755 --- a/api/Controllers/mvcController.cs +++ b/api/Controllers/mvcController.cs @@ -7,6 +7,7 @@ using Microsoft.EntityFrameworkCore; using api.Dtos; using Microsoft.AspNetCore.Identity; using api.Models; +using System.Net.Http; namespace api.Controllers { @@ -31,7 +32,36 @@ namespace api.Controllers return View("Views/Landing/index.cshtml"); } + [AllowAnonymous] + [HttpGet("/reset/{user}")] + public async Task resetPassword(string user) + { + + + using (var client = new HttpClient()) + { + try + { + var url = "https://tickets.enei.pt/internal/api/User/ResetPassword?code=" + user; + + // client.DefaultRequestHeaders.Add("Authorization", "Bearer " + a.token); + var response = await client.GetStringAsync(url); + + return View("Views/Landing/resetPage.cshtml"); + } + catch (HttpRequestException a) + { + + return View("Views/Landing/resetError.cshtml"); + // return NotFound(a); + } + + + + } + + } [HttpGet("/app")] [AllowAnonymous] public IActionResult appPage() @@ -41,16 +71,22 @@ namespace api.Controllers } - [HttpGet("/ctf")] + [HttpGet("/ctf")] [AllowAnonymous] - public IActionResult ctfPage() { + public IActionResult ctfPage() + { return View("Views/Landing/ctf.cshtml"); } - - + [AllowAnonymous] + [Route("{*url}", Order = 999)] + public IActionResult CatchAll() + { + Response.StatusCode = 404; + return View("Views/Landing/notFound.cshtml"); + } } diff --git a/api/Dtos/reset.cs b/api/Dtos/reset.cs new file mode 100644 index 00000000..ac3e98fb --- /dev/null +++ b/api/Dtos/reset.cs @@ -0,0 +1,7 @@ +namespace api.Dtos +{ + public class reset + { + public string email { get; set; } + } +} \ No newline at end of file diff --git a/api/Views/Landing/app.cshtml b/api/Views/Landing/app.cshtml index 23fb8c82..67259276 100644 --- a/api/Views/Landing/app.cshtml +++ b/api/Views/Landing/app.cshtml @@ -123,11 +123,12 @@

O login na app é feito usando esse QR code

Para obteres a password, deves efectuar reset através da APP, ou preenchendo o campo a baixo.

-
- - -
+ + + + + @@ -197,38 +198,38 @@

Aplicação disponível nas típicas lojas de aplicações.

- - + + - + @@ -348,40 +349,93 @@ - - - -
-
-
-
-

© 2019 ENEI . Todos os direitos reservados

-
-
-
+ + + + + + + + + + + + + + + + + +
+
+

Melhores classificados CTF

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#Nome CompletoPontuação
1Henrique Dias1024 pts
2Fernando Manuel Nunes Gonçalves1024 pts
3Francisco xavier santos petronilho 1024 pts
4Joao eduardo santos alcatrão1024 pts
5Mariana Luísa Lança Miguel e Fernandes Marques1024 pts
+ +
+ +

Estas pontuações refletem o somatório das pontuações dos níveis cumpridos.

+ +
+
+
+

O que é o capture the flag?

+

+ O Capture The Flag é um concurso que vamos realizar diretamente relacionado com o jogo do ENEI, e com os + respetivos prémios espetaculares que temos a oferecer (Nintendo Switch, entre outros). + Este jogo é uma mistura de temas altamente relacionados com Informática, temas como WEB, CRYPTO, + REVERSE_ENGINNERING, e uma mistura de tantos outros. Todos os níveis têm o mesmo objetivo: Encontrar uma + frase (string) que por norma se encontra escondida. + + Qualquer um pode participar no jogo (desde que já detenha um bilhete) apenas com um simples scan a este + QR code. + No fim de encontrares a string, deves gerar um QR code com ela e pronto, o nível está completo! + Basta então fazeres um scan a esse QR e obteres todos os pontos que mereces. + +

+
app +
+
+

O que posso ganhar ao realizar estes desafios?

+
O CTF vale cerca de 50% dos pontos do jogo do ENEI.
+
+
+ +

Nitendo Switch

+
+
+ +

Coluna Bluetooth Xiaomi

+
+
+ +

Auscultadores AKG K518

+
+
+ +

Power Bank Xiaomi Mi 5000

+
+
+
+
+ + + +
+

Web

+
+
+

1 - WHATSTHEPASSWORD(31 pontos)

+

Começa esta jornada, com um desafio fácil relacionado com WEB. Talvez desta forma fiques motivado a continuar!

+

Download

+
+
+

2 - ROT13 (37 pontos)

+

De forma a provares melhor o significado deste concurso, deixamos-te um desafio WEB com alguma análise.

+

Download

+
+
+
+
+

Analyse

+
+
+

3 - BURRO (41 pontos)

+

Com este desafio pomos à prova a tua análise de ficheiros e até pode ser que te rias a completar o 3º de muita diversão.

+

Download

+
+
+

4 - WHOAMI (43 pontos)

+

Vamos lá continuar a desenvolver esse raciocínio, mas desta vez com um pouco de pacotes à mistura. É uma confusão!!

+

Download

+
+
+
+ +
+

Reverse Engeneering

+
+
+

5 - REVERSEENGINNERING (47 pontos)

+

Daqui em diante a dificuldade começa a mudar de direção, vais acompanhar? Fica aqui um desafio de reverse_enginnering, nada de muito complicado (para ti).

+

Download

+
+
+

6 -OLD (59 pontos)

+

Prova o cerne destes desafios, explorando, analisando e percebendo como descobrir a flag escondida, o típico desafio crypto.

+

Download

+
+
+ +
+ +
+

Crypto

+
+
+

7 - MASM_IS_LIFE (61 pontos)

+

Deixamos aqui um desafio destruidor de sonhos, é verdade.. Estás pronto para um bocadinho de assembly?

+

Download

+
+
+

8 - OLD2 (89 pontos)

+

Aqui fica a continuação do desafio nº 6, se ainda não o completas-te, não faz sentido continuares este. Se já o fizes-te, então estás pronto para experimentar esta aventura que teve início em 2002 (DosBox).

+

Download

+
+
+
+
+

Engeneering

+
+
+

9 - ZIPZIPZIPZIP (101 pontos)

+

(WARNING) Não aconselhado a pessoas sensíveis, este nível irá exigir de ti algum tempo, raciocínio e conhecimento. Descobre a flag neste desafio propício a dares em louco. (SPOILER ALERT)

+

Download

+
+
+

10 - THE_END (109 pontos)

+

(WARNING) Nem preciso de comentar... Um nível como este não requer descrições. Boa Sorte!

+

Download

+
+
+
+
+ + +
+ app +
+

Como registar progresso no CTF?

+

Depois de obter a flag (string) do nível, deves gerar um QR code com a mesma.

+

Em seguida, deves usar a App para ler este QR code.

+

Caso seja válida, a flag irá dar-te acesso ao cromo que representa o nível.

+

Para testar podes usar este QR code (free points).

+

Boa sorte, a equipa do ENEI'19

+
+
+ + +
+
+
+
+
Perguntas Frequentes
+

Faqs

+
+
+
+
+
+
    +
  • + Como posso participar? +
    +

    Tal como o descrito acima, basta efetuares a compra do bilhete e fazeres scan do QR code da página do CTF. +

    + +

    Deves então prosseguir à descoberta das frases escondidas em cada desafio, e procederes à geração de um QR code com essa string.

    +
    +
  • +
  • + Quando posso começar? + inscrever? +
    +

    O concurso irá iniciar no domingo (dia 7) às 14:30 horas e terminar no sábado (dia 13) às 00:00 horas.

    +
    +
  • +
  • + O que tenho eu a ganhar? +
    +

    Com a realização do concurso não só irás evoluir as tuas competências gerais relacionadas com Informática e Raciocínio Mental, como estás sujeito a ganhar prémios fenomenais.

    +
    +
  • +
+
+
+
+
+ +
+
+
+
+

© 2019 ENEI . Todos os direitos reservados

+
+
+
    +
  • +
  • +
  • +
  • +
  • +
+
+
+
+
+ + + + + + + + + + + + diff --git a/api/Views/Landing/notFound.cshtml b/api/Views/Landing/notFound.cshtml new file mode 100644 index 00000000..699896ab --- /dev/null +++ b/api/Views/Landing/notFound.cshtml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + ENEI'19 - Error + + + + + + + + + + + + + + + + + + +
+

404

+
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/api/Views/Landing/resetError.cshtml b/api/Views/Landing/resetError.cshtml new file mode 100644 index 00000000..c6487a54 --- /dev/null +++ b/api/Views/Landing/resetError.cshtml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + ENEI'19 - Error + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Erro!!

+

Este código de recuperação não existe, ou já foi utilizado...

+

Volta a realizar o processo! Caso o erro persista, contacta a comissão.

+ +
+ + + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/api/Views/Landing/resetPage.cshtml b/api/Views/Landing/resetPage.cshtml new file mode 100644 index 00000000..eaf0bac1 --- /dev/null +++ b/api/Views/Landing/resetPage.cshtml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + ENEI'19 - Error + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Sucesso!!

+

Dentro de alguns minutos irás receber a nova password.

+

Podes aproveitar a espera para fazer o download.

+ +
+ + + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/api/wwwroot/.DS_Store b/api/wwwroot/.DS_Store index 2f4bcbbc..a21cc559 100755 Binary files a/api/wwwroot/.DS_Store and b/api/wwwroot/.DS_Store differ diff --git a/api/wwwroot/app.html b/api/wwwroot/app.html index 23fb8c82..455c5c41 100644 --- a/api/wwwroot/app.html +++ b/api/wwwroot/app.html @@ -123,11 +123,12 @@

O login na app é feito usando esse QR code

Para obteres a password, deves efectuar reset através da APP, ou preenchendo o campo a baixo.

-
- - -
+ + + + + @@ -197,38 +198,38 @@

Aplicação disponível nas típicas lojas de aplicações.

- - + + - + @@ -348,40 +349,88 @@ - - - -
-
-
-
-

© 2019 ENEI . Todos os direitos reservados

-
-
-
+ + + + + + + + + + + + @@ -98,33 +102,153 @@ -

Estas pontuações refletem o somatório das pontuçãoes dos níveis cumpridos.

+

Estas pontuações refletem o somatório das pontuações dos níveis cumpridos.

-

O CTF - capture the flag é um evento onde os participantes têm como objectivo encontrar as flags escondidas.

-

O nosso CTF não é sobre

+
+

O que é o capture the flag?

+

+ O Capture The Flag é um concurso que vamos realizar diretamente relacionado com o jogo do ENEI, e com os + respetivos prémios espetaculares que temos a oferecer (Nintendo Switch, entre outros). + Este jogo é uma mistura de temas altamente relacionados com Informática, temas como WEB, CRYPTO, + REVERSE_ENGINNERING, e uma mistura de tantos outros. Todos os níveis têm o mesmo objetivo: Encontrar uma + frase (string) que por norma se encontra escondida. + + Qualquer um pode participar no jogo (desde que já detenha um bilhete) apenas com um simples scan a este + QR code. + No fim de encontrares a string, deves gerar um QR code com ela e pronto, o nível está completo! + Basta então fazeres um scan a esse QR e obteres todos os pontos que mereces. + +

+
app
-
+

O que posso ganhar ao realizar estes desafios?

-

+
O CTF vale cerca de 50% dos pontos do jogo do ENEI.
+
+
+ +

Nitendo Switch

+
+
+ +

Coluna Bluetooth Xiaomi

+
+
+ +

Auscultadores AKG K518

+
+
+ +

Power Bank Xiaomi Mi 5000

+
+
+
+ + + +
+

Web

+
+
+

1 - WHATSTHEPASSWORD(31 pontos)

+

Começa esta jornada, com um desafio fácil relacionado com WEB. Talvez desta forma fiques motivado a continuar!

+

Download

+
+
+

2 - ROT13 (37 pontos)

+

De forma a provares melhor o significado deste concurso, deixamos-te um desafio WEB com alguma análise.

+

Download

+
+
+
+
+

Analyse

+
+
+

3 - BURRO (41 pontos)

+

Com este desafio pomos à prova a tua análise de ficheiros e até pode ser que te rias a completar o 3º de muita diversão.

+

Download

+
+
+

4 - WHOAMI (43 pontos)

+

Vamos lá continuar a desenvolver esse raciocínio, mas desta vez com um pouco de pacotes à mistura. É uma confusão!!

+

Download

+
+
+
+ +
+

Reverse Engeneering

+
+
+

5 - REVERSEENGINNERING (47 pontos)

+

Daqui em diante a dificuldade começa a mudar de direção, vais acompanhar? Fica aqui um desafio de reverse_enginnering, nada de muito complicado (para ti).

+

Download

+
+
+

6 -OLD (59 pontos)

+

Prova o cerne destes desafios, explorando, analisando e percebendo como descobrir a flag escondida, o típico desafio crypto.

+

Download

+
+
+ +
+ +
+

Crypto

+
+
+

7 - MASM_IS_LIFE (61 pontos)

+

Deixamos aqui um desafio destruidor de sonhos, é verdade.. Estás pronto para um bocadinho de assembly?

+

Download

+
+
+

8 - OLD2 (89 pontos)

+

Aqui fica a continuação do desafio nº 6, se ainda não o completas-te, não faz sentido continuares este. Se já o fizes-te, então estás pronto para experimentar esta aventura que teve início em 2002 (DosBox).

+

Download

+
+
+
+
+

Engeneering

+
+
+

9 - ZIPZIPZIPZIP (101 pontos)

+

(WARNING) Não aconselhado a pessoas sensíveis, este nível irá exigir de ti algum tempo, raciocínio e conhecimento. Descobre a flag neste desafio propício a dares em louco. (SPOILER ALERT)

+

Download

+
+
+

10 - THE_END (109 pontos)

+

(WARNING) Nem preciso de comentar... Um nível como este não requer descrições. Boa Sorte!

+

Download

+
+
+
+
+
app -
-

No decorrer do concurso sempre que encontrares a Flag, deves criar um QR code com a mesma e efectuar a - leitura utilizando a aplicação do envento.

-

Para começares lê este QR code com a APP

+
+

Como registar progresso no CTF?

+

Depois de obter a flag (string) do nível, deves gerar um QR code com a mesma.

+

Em seguida, deves usar a App para ler este QR code.

+

Caso seja válida, a flag irá dar-te acesso ao cromo que representa o nível.

+

Para testar podes usar este QR code (free points).

+

Boa sorte, a equipa do ENEI'19

+
Perguntas Frequentes
-

Faq

+

Faqs


@@ -132,52 +256,26 @@
  • - O que é o ENEI? + Como posso participar?
    -

    O Encontro Nacional de Estudantes de Informática (ENEI) é um evento que pretende - oferecer aos estudantes de todo o país um evento que promove a aprendizagem, a troca - de - ideias e o convívio, enquanto tenta criar fortes ligações com o mundo empresarial. +

    Tal como o descrito acima, basta efetuares a compra do bilhete e fazeres scan do QR code da página do CTF.

    -

    Esta versão do evento também incluirá os tradicionais momentos de diversão noturnos - que - muito apelam a todos os participantes das antigas edições e são uma excelente via de - networking e transferência de conhecimento!

    +

    Deves então prosseguir à descoberta das frases escondidas em cada desafio, e procederes à geração de um QR code com essa string.

  • - Onde me posso + Quando posso começar? inscrever?
    -

    Podes adquirir o teu bilhete AQUI. -

    +

    O concurso irá iniciar no domingo (dia 7) às 14:30 horas e terminar no sábado (dia 13) às 00:00 horas.

  • - Quando é o programa vai estar disponível? + O que tenho eu a ganhar?
    -

    O programa vai sendo lançado nas próximas semanas de forma iterativa.

    - -
    -
  • -
  • - Quem pode - participar no evento? -
    -

    Podem participar no ENEI’19 todos os estudantes de cursos relacionados com - informática e - todos aqueles que querem aprender mais sobre os temas abordados!

    -
    -
  • -
  • - Tenho - acesso a todas as sessões? -
    -

    Não, as palestras e workshops necessitam de inscrições visto que têm lugares - limitados.

    -

    Brevemente poderás te inscrever na aplicação móvel do ENEI'19!

    +

    Com a realização do concurso não só irás evoluir as tuas competências gerais relacionadas com Informática e Raciocínio Mental, como estás sujeito a ganhar prémios fenomenais.

@@ -186,36 +284,29 @@
- - - -
-
-
-
-

© 2019 ENEI . Todos os direitos reservados

-
-
-
+ @@ -230,4 +321,4 @@ - \ No newline at end of file + diff --git a/api/wwwroot/ctf/.DS_Store b/api/wwwroot/ctf/.DS_Store new file mode 100644 index 00000000..4c75840b Binary files /dev/null and b/api/wwwroot/ctf/.DS_Store differ diff --git a/api/wwwroot/ctf/ASM_IS_LIFE.zip b/api/wwwroot/ctf/ASM_IS_LIFE.zip new file mode 100644 index 00000000..1f493dc5 Binary files /dev/null and b/api/wwwroot/ctf/ASM_IS_LIFE.zip differ diff --git a/api/wwwroot/ctf/Burro.zip b/api/wwwroot/ctf/Burro.zip new file mode 100644 index 00000000..c40dec95 Binary files /dev/null and b/api/wwwroot/ctf/Burro.zip differ diff --git a/api/wwwroot/ctf/OLD.zip b/api/wwwroot/ctf/OLD.zip new file mode 100644 index 00000000..c5a6aaaf Binary files /dev/null and b/api/wwwroot/ctf/OLD.zip differ diff --git a/api/wwwroot/ctf/OLD2.zip b/api/wwwroot/ctf/OLD2.zip new file mode 100644 index 00000000..1538b076 Binary files /dev/null and b/api/wwwroot/ctf/OLD2.zip differ diff --git a/api/wwwroot/ctf/THEEND.zip b/api/wwwroot/ctf/THEEND.zip new file mode 100644 index 00000000..a724f56c Binary files /dev/null and b/api/wwwroot/ctf/THEEND.zip differ diff --git a/api/wwwroot/ctf/Try_Me.zip b/api/wwwroot/ctf/Try_Me.zip new file mode 100644 index 00000000..4242f67f Binary files /dev/null and b/api/wwwroot/ctf/Try_Me.zip differ diff --git a/api/wwwroot/ctf/WHOAMI.zip b/api/wwwroot/ctf/WHOAMI.zip new file mode 100644 index 00000000..2e2c9c97 Binary files /dev/null and b/api/wwwroot/ctf/WHOAMI.zip differ diff --git a/api/wwwroot/ctf/ZIPZIPZIPZIP.zip b/api/wwwroot/ctf/ZIPZIPZIPZIP.zip new file mode 100644 index 00000000..1781e792 Binary files /dev/null and b/api/wwwroot/ctf/ZIPZIPZIPZIP.zip differ diff --git a/api/wwwroot/error-page.html b/api/wwwroot/error-page.html index 9be4cb18..699896ab 100755 --- a/api/wwwroot/error-page.html +++ b/api/wwwroot/error-page.html @@ -38,28 +38,9 @@

404

- - - -
-
-
-

© 2018 ENEI . Todos os direitos reservados

-
-
-
+ + + @@ -67,13 +48,14 @@ - + + + diff --git a/api/wwwroot/imgs/.DS_Store b/api/wwwroot/imgs/.DS_Store index 5684e50e..03c3e3ee 100644 Binary files a/api/wwwroot/imgs/.DS_Store and b/api/wwwroot/imgs/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/.DS_Store b/api/wwwroot/imgs/caching/.DS_Store new file mode 100644 index 00000000..c3a22378 Binary files /dev/null and b/api/wwwroot/imgs/caching/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/aac/AAC.jpg b/api/wwwroot/imgs/caching/aac/AAC.jpg new file mode 100755 index 00000000..a2847a11 Binary files /dev/null and b/api/wwwroot/imgs/caching/aac/AAC.jpg differ diff --git a/api/wwwroot/imgs/caching/aac/Captura de Tela 2019-04-06 às 12.12.07.png b/api/wwwroot/imgs/caching/aac/Captura de Tela 2019-04-06 às 12.12.07.png new file mode 100755 index 00000000..6cc32fc2 Binary files /dev/null and b/api/wwwroot/imgs/caching/aac/Captura de Tela 2019-04-06 às 12.12.07.png differ diff --git a/api/wwwroot/imgs/caching/aac/avatar.jpg b/api/wwwroot/imgs/caching/aac/avatar.jpg new file mode 100755 index 00000000..d37736bd Binary files /dev/null and b/api/wwwroot/imgs/caching/aac/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/aac/location.jpg b/api/wwwroot/imgs/caching/aac/location.jpg new file mode 100755 index 00000000..ebf3aa3f Binary files /dev/null and b/api/wwwroot/imgs/caching/aac/location.jpg differ diff --git a/api/wwwroot/imgs/caching/aac/transferir.jpg b/api/wwwroot/imgs/caching/aac/transferir.jpg new file mode 100755 index 00000000..681b2b6e Binary files /dev/null and b/api/wwwroot/imgs/caching/aac/transferir.jpg differ diff --git a/api/wwwroot/imgs/caching/arco-torre-almedina/Captura de Tela 2019-04-06 às 12.12.07.png b/api/wwwroot/imgs/caching/arco-torre-almedina/Captura de Tela 2019-04-06 às 12.12.07.png new file mode 100755 index 00000000..6cc32fc2 Binary files /dev/null and b/api/wwwroot/imgs/caching/arco-torre-almedina/Captura de Tela 2019-04-06 às 12.12.07.png differ diff --git a/api/wwwroot/imgs/caching/arco-torre-almedina/arco-torre-almedina.jpg b/api/wwwroot/imgs/caching/arco-torre-almedina/arco-torre-almedina.jpg new file mode 100755 index 00000000..5718d4f7 Binary files /dev/null and b/api/wwwroot/imgs/caching/arco-torre-almedina/arco-torre-almedina.jpg differ diff --git a/api/wwwroot/imgs/caching/arco-torre-almedina/avatar.jpg b/api/wwwroot/imgs/caching/arco-torre-almedina/avatar.jpg new file mode 100755 index 00000000..0ab96c2c Binary files /dev/null and b/api/wwwroot/imgs/caching/arco-torre-almedina/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/arco-torre-almedina/location.jpg b/api/wwwroot/imgs/caching/arco-torre-almedina/location.jpg new file mode 100755 index 00000000..457589fe Binary files /dev/null and b/api/wwwroot/imgs/caching/arco-torre-almedina/location.jpg differ diff --git a/api/wwwroot/imgs/caching/arco-torre-almedina/torre-de-almedina.jpg b/api/wwwroot/imgs/caching/arco-torre-almedina/torre-de-almedina.jpg new file mode 100755 index 00000000..5b8cd2ee Binary files /dev/null and b/api/wwwroot/imgs/caching/arco-torre-almedina/torre-de-almedina.jpg differ diff --git a/api/wwwroot/imgs/caching/botanico/avatar.jpg b/api/wwwroot/imgs/caching/botanico/avatar.jpg new file mode 100755 index 00000000..f5a5d133 Binary files /dev/null and b/api/wwwroot/imgs/caching/botanico/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/botanico/botanico.jpg b/api/wwwroot/imgs/caching/botanico/botanico.jpg new file mode 100755 index 00000000..021999f3 Binary files /dev/null and b/api/wwwroot/imgs/caching/botanico/botanico.jpg differ diff --git a/api/wwwroot/imgs/caching/botanico/location.jpg b/api/wwwroot/imgs/caching/botanico/location.jpg new file mode 100755 index 00000000..9a9a7f87 Binary files /dev/null and b/api/wwwroot/imgs/caching/botanico/location.jpg differ diff --git a/api/wwwroot/imgs/caching/monumentais/avatar.jpg b/api/wwwroot/imgs/caching/monumentais/avatar.jpg new file mode 100755 index 00000000..7bc85ec1 Binary files /dev/null and b/api/wwwroot/imgs/caching/monumentais/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/monumentais/header.jpg b/api/wwwroot/imgs/caching/monumentais/header.jpg new file mode 100755 index 00000000..3b52d9ce Binary files /dev/null and b/api/wwwroot/imgs/caching/monumentais/header.jpg differ diff --git a/api/wwwroot/imgs/caching/monumentais/location.jpg b/api/wwwroot/imgs/caching/monumentais/location.jpg new file mode 100755 index 00000000..356dc49b Binary files /dev/null and b/api/wwwroot/imgs/caching/monumentais/location.jpg differ diff --git a/api/wwwroot/imgs/caching/nova/.DS_Store b/api/wwwroot/imgs/caching/nova/.DS_Store new file mode 100644 index 00000000..ddea5bef Binary files /dev/null and b/api/wwwroot/imgs/caching/nova/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/nova/avatar.jpg b/api/wwwroot/imgs/caching/nova/avatar.jpg new file mode 100755 index 00000000..a5ec1dc4 Binary files /dev/null and b/api/wwwroot/imgs/caching/nova/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/nova/header.jpg b/api/wwwroot/imgs/caching/nova/header.jpg new file mode 100755 index 00000000..ecc20b96 Binary files /dev/null and b/api/wwwroot/imgs/caching/nova/header.jpg differ diff --git a/api/wwwroot/imgs/caching/nova/location.jpg b/api/wwwroot/imgs/caching/nova/location.jpg new file mode 100755 index 00000000..fd4ec808 Binary files /dev/null and b/api/wwwroot/imgs/caching/nova/location.jpg differ diff --git a/api/wwwroot/imgs/caching/porta/.DS_Store b/api/wwwroot/imgs/caching/porta/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/api/wwwroot/imgs/caching/porta/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/porta/avatar.jpg b/api/wwwroot/imgs/caching/porta/avatar.jpg new file mode 100755 index 00000000..a12ae653 Binary files /dev/null and b/api/wwwroot/imgs/caching/porta/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/porta/header.jpg b/api/wwwroot/imgs/caching/porta/header.jpg new file mode 100755 index 00000000..82bca891 Binary files /dev/null and b/api/wwwroot/imgs/caching/porta/header.jpg differ diff --git a/api/wwwroot/imgs/caching/porta/location.jpg b/api/wwwroot/imgs/caching/porta/location.jpg new file mode 100755 index 00000000..c8197fba Binary files /dev/null and b/api/wwwroot/imgs/caching/porta/location.jpg differ diff --git a/api/wwwroot/imgs/caching/praca/.DS_Store b/api/wwwroot/imgs/caching/praca/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/api/wwwroot/imgs/caching/praca/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/praca/avatar.jpg b/api/wwwroot/imgs/caching/praca/avatar.jpg new file mode 100755 index 00000000..cd886cf9 Binary files /dev/null and b/api/wwwroot/imgs/caching/praca/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/praca/header.jpg b/api/wwwroot/imgs/caching/praca/header.jpg new file mode 100755 index 00000000..61440108 Binary files /dev/null and b/api/wwwroot/imgs/caching/praca/header.jpg differ diff --git a/api/wwwroot/imgs/caching/praca/location.jpg b/api/wwwroot/imgs/caching/praca/location.jpg new file mode 100755 index 00000000..c4968888 Binary files /dev/null and b/api/wwwroot/imgs/caching/praca/location.jpg differ diff --git a/api/wwwroot/imgs/caching/quebra_costas/.DS_Store b/api/wwwroot/imgs/caching/quebra_costas/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/api/wwwroot/imgs/caching/quebra_costas/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/quebra_costas/avatar.jpg b/api/wwwroot/imgs/caching/quebra_costas/avatar.jpg new file mode 100755 index 00000000..0c57e479 Binary files /dev/null and b/api/wwwroot/imgs/caching/quebra_costas/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/quebra_costas/header.jpg b/api/wwwroot/imgs/caching/quebra_costas/header.jpg new file mode 100755 index 00000000..19a6844e Binary files /dev/null and b/api/wwwroot/imgs/caching/quebra_costas/header.jpg differ diff --git a/api/wwwroot/imgs/caching/quebra_costas/location.jpg b/api/wwwroot/imgs/caching/quebra_costas/location.jpg new file mode 100755 index 00000000..6039cce4 Binary files /dev/null and b/api/wwwroot/imgs/caching/quebra_costas/location.jpg differ diff --git a/api/wwwroot/imgs/caching/sereia/.DS_Store b/api/wwwroot/imgs/caching/sereia/.DS_Store new file mode 100644 index 00000000..3b1fcaab Binary files /dev/null and b/api/wwwroot/imgs/caching/sereia/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/sereia/avatar.jpg b/api/wwwroot/imgs/caching/sereia/avatar.jpg new file mode 100755 index 00000000..652982ff Binary files /dev/null and b/api/wwwroot/imgs/caching/sereia/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/sereia/location.jpg b/api/wwwroot/imgs/caching/sereia/location.jpg new file mode 100755 index 00000000..9de21afd Binary files /dev/null and b/api/wwwroot/imgs/caching/sereia/location.jpg differ diff --git a/api/wwwroot/imgs/caching/sereia/parque-de-santa-cruz.jpg b/api/wwwroot/imgs/caching/sereia/parque-de-santa-cruz.jpg new file mode 100755 index 00000000..46abfaca Binary files /dev/null and b/api/wwwroot/imgs/caching/sereia/parque-de-santa-cruz.jpg differ diff --git a/api/wwwroot/imgs/caching/velha/.DS_Store b/api/wwwroot/imgs/caching/velha/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/api/wwwroot/imgs/caching/velha/.DS_Store differ diff --git a/api/wwwroot/imgs/caching/velha/avatar.jpg b/api/wwwroot/imgs/caching/velha/avatar.jpg new file mode 100755 index 00000000..11c4fe89 Binary files /dev/null and b/api/wwwroot/imgs/caching/velha/avatar.jpg differ diff --git a/api/wwwroot/imgs/caching/velha/header.jpg b/api/wwwroot/imgs/caching/velha/header.jpg new file mode 100755 index 00000000..5d95477b Binary files /dev/null and b/api/wwwroot/imgs/caching/velha/header.jpg differ diff --git a/api/wwwroot/imgs/caching/velha/location.jpg b/api/wwwroot/imgs/caching/velha/location.jpg new file mode 100755 index 00000000..50c20fe2 Binary files /dev/null and b/api/wwwroot/imgs/caching/velha/location.jpg differ diff --git a/api/wwwroot/imgs/flag.png b/api/wwwroot/imgs/flag.png new file mode 100644 index 00000000..a85070b0 Binary files /dev/null and b/api/wwwroot/imgs/flag.png differ diff --git a/api/wwwroot/main.css b/api/wwwroot/main.css old mode 100755 new mode 100644 index 8a548b7c..2961b833 --- a/api/wwwroot/main.css +++ b/api/wwwroot/main.css @@ -1730,12 +1730,23 @@ footer p { .ctf-header .ctf-top10 td { text-align: center; } +@media screen and (max-width: 769px) { + .ctf-header .ctf-top10 { + width: 95%; + padding-top: 20px; + } +} .ctf-header .about-top { color: white; font-size: 15px; text-align: center; margin: 2%; } +@media screen and (max-width: 769px) { + .ctf-header { + width: 100%; + } +} .container-app { background-image: linear-gradient(0deg, #d02e2c 20%, #e1494e 100%); @@ -1860,6 +1871,23 @@ footer p { width: 60%; height: 60%; } +.login-app .button-default { + padding: 20px; + font-size: 14px; + line-height: 14px; + color: black; + font-weight: 700; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 30px 30px; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; +} +.login-app .button-default:hover { + border-color: #cc1a17; + background-color: #cc1a17; + color: #ffffff; +} @media screen and (max-width: 769px) { .login-app { flex-direction: column; @@ -2042,9 +2070,9 @@ footer p { display: flex; color: blue; /* First we need to help some browsers along for this to work. - Just because a vendor prefix is there, doesn't mean it will - work in a browser made by that vendor either, it's just for - future-proofing purposes I guess. */ + Just because a vendor prefix is there, doesn't mean it will + work in a browser made by that vendor either, it's just for + future-proofing purposes I guess. */ -o-transition: 0.5s; -ms-transition: 0.5s; -moz-transition: 0.5s; @@ -2080,12 +2108,37 @@ footer p { flex: 1; display: flex; flex-direction: row; + padding: 50px; + justify-content: center; background-image: url("./imgs/bg_phone.png"); } +@media screen and (max-width: 769px) { + .explain-qr { + padding: 10px; + } +} +.explain-qr .explain { + margin: 30px; +} +@media screen and (max-width: 769px) { + .explain-qr .explain { + margin: 10px; + } +} +.explain-qr .explain h3 { + margin-bottom: 0; + color: white; + margin: 20px; +} +.explain-qr .explain p { + color: white; + margin-left: 20px; +} .explain-qr img { width: 20%; height: 20%; margin: 20px; + align-self: center; } @media screen and (max-width: 769px) { .explain-qr { @@ -2096,13 +2149,181 @@ footer p { height: 100%; } } -.explain-qr h3 { - color: white; - margin: 30px; -} .ctf-explain { + flex: 1; + display: flex; + flex-direction: row; background-color: #eeeeee; + padding: 40px; +} +.ctf-explain h3 { + padding: 30px; + padding-bottom: 0px; +} +.ctf-explain p { + padding: 30px; + text-align: justify; + text-justify: inter-word; +} +.ctf-explain img { + width: 30%; + height: 30%; +} +@media screen and (max-width: 769px) { + .ctf-explain { + flex-direction: column; + padding: 1px; + } + .ctf-explain img { + width: 100%; + height: 100%; + } + .ctf-explain p { + width: 100%; + padding: 15px; + } +} + +.ctf-levels .level1-ctf { + background-color: #de6d6b; +} +.ctf-levels .level2-ctf { + background-color: #d95856; +} +.ctf-levels .level3-ctf { + background-color: #d54341; +} +.ctf-levels .level4-ctf { + background-color: #d02e2c; +} +.ctf-levels .level5-ctf { + background-color: #cc1a17; +} +.ctf-levels .level { + padding: 80px; +} +@media screen and (max-width: 769px) { + .ctf-levels .level { + padding: 30px 10px; + } +} +.ctf-levels .level h3 { + color: white; + padding-left: 30px; +} +.ctf-levels .level .sub-container { + flex: 1; + display: flex; + flex-direction: row; +} +@media screen and (max-width: 769px) { + .ctf-levels .level .sub-container { + flex-direction: column; + } +} +.ctf-levels .level .sub-container .sub-level { + width: 100%; + border: 1px dashed white; + margin: 20px; + padding: 20px; + align-content: center; + flex: 1; + display: flex; + flex-direction: column; + justify-content: center; +} +@media screen and (max-width: 769px) { + .ctf-levels .level .sub-container .sub-level { + padding: 5; + margin: 10px 0; + } +} +.ctf-levels .level .sub-container .sub-level p { + color: black; + text-align: justify; + text-justify: inter-word; +} +.ctf-levels .level .sub-container .sub-level i { + color: #eeeeee; + font-size: 18px; +} +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf { + flex: 1; + display: flex; + flex-direction: row; + color: white; + width: 40%; + margin: 20px; + text-align: center; + margin: 0 auto; +} +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf i { + font-size: 30px; +} +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf:hover { + text-decoration: none; +} +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf:hover a:hover { + text-decoration: none; +} +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf h3 { + font-size: 20px; + margin: 10px; + align-content: center; + align-self: center; +} + +.ctf-prizes { + padding: 50px; +} +.ctf-prizes h3 { + padding: 30px; + padding-bottom: 0px; +} +.ctf-prizes h5 { + padding-left: 30px; + color: #cc1a17; +} +@media screen and (max-width: 769px) { + .ctf-prizes { + padding: 0; + } + .ctf-prizes h3 { + padding: 20px; + text-align: center; + } + .ctf-prizes h5 { + text-align: center; + padding: 10px; + } +} +.ctf-prizes .prizes-container { + flex: 1; + display: flex; + flex-direction: row; + padding-top: 30px; +} +.ctf-prizes .prizes-container .prize { + flex: 1; + flex-direction: column; + display: flex; + width: 100%; + margin: 20px; + align-content: center; + align-items: center; +} +.ctf-prizes .prizes-container .prize .prize-logo { + font-size: 100px; +} +@media screen and (max-width: 769px) { + .ctf-prizes .prizes-container { + flex-direction: column; + padding-bottom: 20px; + } + .ctf-prizes .prizes-container .prize { + margin: 0; + } } /*# sourceMappingURL=main.css.map */ diff --git a/api/wwwroot/main.css.map b/api/wwwroot/main.css.map index a40dd156..e83f599e 100755 --- a/api/wwwroot/main.css.map +++ b/api/wwwroot/main.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["main.scss"],"names":[],"mappings":"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ACA;;AAGF;EACC,OA/7CG;EAg8CH;;AAED;EACC;EACA;EACA;;;AAKH;EACC;;AACA;EACC;EACA;EACA;;AAEA;EACC;;AAGF;EACC;EACA;EACA,OAz9CU;EA09CV;EACA;EACA;;;AAIF;EACC;EACA,OAl+CW;;AAm+CX;EACC;;AACA;EACC;;AAIF;EACC,aA39CU;EA49CV;EACA;EACA;EACA,OA/+CU;EAg/CV;;AACA;EACC,OAj/CG;;AAm/CJ;EACC;EACA;EACA;;AAGF;EACC;;AAED;EACC;EACA;EACA,OA//CI;EAggDJ;EACA;;AAED;EACC;;AAED;EACC,OAxgDU;EAygDV;EACA;;AACA;EACC;EACA;;AAGF;EACC,OAhhDI;;AAkhDL;EACC;EACA;EACA;;AAIA;EACC;;;AAKH;EACC;;AACA;EACC;;AAED;EACC;EACA;;AA3+CD;EAy+CA;IAIE;IACA;;;AAGD;EACC;;AAGF;EACC;;AAt/CD;EAq/CA;IAGE;;;AA9/CF;EA2/CA;IAME;;;AAGF;EACC;;AArgDD;EAogDA;IAGE;;;AAGF;EACC;;AA3gDD;EA0gDA;IAGE;;;AAGF;EACC;;AAjhDD;EAghDA;IAGE;;;AAGF;EACC;;AAvhDD;EAshDA;IAGE;;;AAGF;EACC;;AA7hDD;EA4hDA;IAGE;;;AAGF;EACC;EACA;;AApiDD;EAkiDA;IAIE;;;;AAOH;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EAEA;EAMA;;AALA;EACE;EACA;EACA;;AAGF;EACE;;AAEF;EACE;;AAGJ;EACE;EACA;EACA;EACA;;;AAGJ;EACC;EACA;;AAEA;EACE;EACA;;AAEA;EAJF;IAKC;IACA;IACA;;EACA;IACE;;EAEF;IACE;;;AAID;EACD;EACA;EACA;EACA;EACA;EACA;;AAEC;EACD;EACA;EACA;EACA;;;AAKD;EACE;EAEA;;;AAGD;EACD;;;AAEC;EACD;;;AAEC;EACD;;;AAEC;EACD;;;AAEC;EACD;EACA;;AACA;EACE;EACA;EACA;EACA;;AAEF;EACE;;;AAGD;EACD;EACA;EACA;EACA;EACA;;AACA;EANC;IAOC;IACA;;;;AAGD;EAOD;EACA;EACA;EACA;EACA;;AAVA;EACE;EACA;EACA;;AASF;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EAtBC;IAuBC;IACA;;;;AAID;EACD;EACA;EACA;EAMA;;AAJA;EACE;EACA;;AAKF;EAZC;IAaC;;EACA;IACD;IACA;;;;AAIA;EAED;EACA;;AACA;EAJC;IAKC;;;AAEF;EACE;EACA;;AAEF;EACE;;AACA;EACD;EACA;;;AAKA;EACD;EACA;EASA;AAaA;AA0BA;;AA9CA;EAJC;IAKC;IACA;IACA;IACA;;;AAIF;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;;AAIF;EACE;EAEA;EACA;EAGA;EACA;EACA;EACA;EACA;;AACA;EACD;;AAEC;EAfF;IAgBC;IACA;;;AASD;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;;AAEA;EAVF;IAWC;IACA;;;AAIC;EACD;EACA;EACA;;AACA;EAJC;IAKC;IACA;;;AAID;EACD;EACA;EACA;;AACA;EAJC;IAKC;;;AAIF;EACE;EACA;;AAEF;EACE;;AAEF;EACE;;;AAMF;EACD;EACA;EAOA;EAKA;EACA;;AAVE;EALD;IAMD;IACA;;;AAGA;EACE;EACA;;AAKF;EACE;EACA;;AACA;EAHF;IAIC;;;AAID;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQC;;;AAKD;EACE;EACA;EACA;EAEA;EACA;EACA;EAcA;AACA;AAAA;AAAA;AAAA;EAIA;EACA;EACA;EACA;AACA;EACA;;AAlBA;EACD;EACA;EACA;;AAEC;EACD;;AAaC;EACD;;AAGD;EACE;EACA;EACA;EACA;EACA;;;AAID;EACD;EACA;;;AAED;EACC;EACA;EACA;EAOA;;AALA;EACE;EACA;EACA;;AAKF;EAbD;IAcG;;EACA;IACD;IACA;;;AAID;EACC;EACA;;;AAIF;EACC","file":"main.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["main.scss"],"names":[],"mappings":"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EF;EACE;;;AAGJ;EACE;EACA;EACA;EACA;EACA;;AACA;EANF;IAOI;IACA;;;;AAGJ;EAOE;EACA;EACA;EACA;EACA;;AAVA;EACE;EACA;EACA;;AASF;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EAtBF;IAuBI;IACA;;;;AAIJ;EACE;EACA;EACA;EA0BA;;AAxBA;EACE;EACA;;AAEF;EACE;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAMJ;EAhCF;IAiCI;;EACA;IACE;IACA;;;;AAIN;EAEE;EACA;;AACA;EAJF;IAKI;;;AAEF;EACE;EACA;;AAEF;EACE;;AACA;EACE;EACA;;;AAKN;EACE;EACA;EASA;AAaA;AA0BA;;AA9CA;EAJF;IAKI;IACA;IACA;IACA;;;AAIF;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;;AAIF;EACE;EAEA;EACA;EAGA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EAfF;IAgBI;IACA;;;AASJ;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;;AAEA;EAVF;IAWI;IACA;;;AAIF;EACE;EACA;EACA;;AACA;EAJF;IAKI;IACA;;;AAIJ;EACE;EACA;EACA;;AACA;EAJF;IAKI;;;AAIF;EACE;EACA;;AAEF;EACE;;AAEF;EACE;;;AAMR;EACE;EACA;EAOA;EAKA;EACA;;AAVA;EALF;IAMI;IACA;;;AAGF;EACE;EACA;;AAKF;EACE;EACA;;AACA;EAHF;IAII;;;AAGJ;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQI;;;AAIJ;EACE;EACA;EACA;EAEA;EACA;EACA;EAaA;AACA;AAAA;AAAA;AAAA;EAIA;EACA;EACA;EACA;AACA;EACA;;AAlBA;EACE;EACA;EACA;;AAEF;EACE;;AAaF;EACE;;AAGJ;EACE;EACA;EACA;EACA;EACA;;;AAIJ;EACE;EACA;;;AAEF;EACE;EACA;EACA;EACA;EACA;EA8BA;;AA3BA;EARF;IASI;;;AAEF;EACE;;AACA;EAFF;IAGI;;;AAEF;EAEE;EACA;EACA;;AAEF;EACE;EACA;;AAKJ;EACE;EACA;EACA;EACA;;AAKF;EAtCF;IAuCI;;EACA;IACE;IACA;;;;AAKN;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EAnBF;IAoBI;IASA;;EARA;IACE;IACA;;EAEF;IACE;IACA;;;;AAOJ;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;;AAEF;EAKE;;AAJA;EADF;IAEI;;;AAIF;EACE;EACA;;AAEF;EAKE;EACA;EACA;;AANA;EADF;IAEI;;;AAMF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EAVF;IAYI;IACF;;;AAGA;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;;AACA;EACE;;AAEF;EAGE;;AACA;EACE;;AAGJ;EACE;EACA;EACA;EACA;;;AAOZ;EACE;;AACA;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EAVF;IAWI;;EACA;IACE;IACA;;EAEF;IACE;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EAEA;EACA;EACA;;AACA;EACE;;AAGJ;EAlBF;IAmBI;IAKF;;EAHE;IACE","file":"main.css"} \ No newline at end of file diff --git a/api/wwwroot/main.scss b/api/wwwroot/main.scss index 8315d5dc..65709f37 100755 --- a/api/wwwroot/main.scss +++ b/api/wwwroot/main.scss @@ -1,4 +1,3 @@ - $black: #000000; $white: #ffffff; $grey: #777777; @@ -37,88 +36,88 @@ $bold: 700; }*/ @mixin font($fontFamily, $fontSize, $lineHeight, $colorText) { - font-family: $fontFamily, sans-serif; - font-size: $fontSize; - line-height: $lineHeight; - color: $colorText; + font-family: $fontFamily, sans-serif; + font-size: $fontSize; + line-height: $lineHeight; + color: $colorText; } @mixin position($position, $top, $right, $bottom, $left) { - position: $position; - top: $top; - right: $right; - bottom: $bottom; - left: $left; + position: $position; + top: $top; + right: $right; + bottom: $bottom; + left: $left; } @mixin size($width, $height) { - width: $width; - height: $height; + width: $width; + height: $height; } @mixin mobile { - @media (max-width: #{$mobile}) { - @content; - } + @media (max-width: #{$mobile}) { + @content; + } } @mixin portable { - @media (max-width: #{$portable}) { - @content; - } + @media (max-width: #{$portable}) { + @content; + } } @-webkit-keyframes animateLineLogo { - 15% { - fill: #c7403a; - } - 30% { - fill: #81898e; - } - 45% { - fill: #993d3f; - } - 100% { - fill: #000000; - } + 15% { + fill: #c7403a; + } + 30% { + fill: #81898e; + } + 45% { + fill: #993d3f; + } + 100% { + fill: #000000; + } } @-moz-keyframes animateLineLogo { - 15% { - fill: #c7403a; - } - 30% { - fill: #81898e; - } - 45% { - fill: #993d3f; - } - 100% { - fill: #000000; - } + 15% { + fill: #c7403a; + } + 30% { + fill: #81898e; + } + 45% { + fill: #993d3f; + } + 100% { + fill: #000000; + } } @keyframes animateLineLogo { - 15% { - fill: #c7403a; - } - 30% { - fill: #81898e; - } - 45% { - fill: #993d3f; - } - 100% { - fill: #000000; - } + 15% { + fill: #c7403a; + } + 30% { + fill: #81898e; + } + 45% { + fill: #993d3f; + } + 100% { + fill: #000000; + } } @keyframes animateLettersLogo { - from { - fill: transparent; - } - to { - fill: #ffffff; - } + from { + fill: transparent; + } + to { + fill: #ffffff; + } } //icons @@ -138,31 +137,31 @@ $icon-less: "\e906"; $icon-linkedin1: "\eac9"; @font-face { - font-family: "icomoon"; - src: url("#{$icomoon-font-path}/icomoon.eot?sozc77"); - src: url("#{$icomoon-font-path}/icomoon.eot?sozc77#iefix") format("embedded-opentype"), - url("#{$icomoon-font-path}/icomoon.ttf?sozc77") format("truetype"), - url("#{$icomoon-font-path}/icomoon.woff?sozc77") format("woff"), - url("#{$icomoon-font-path}/icomoon.svg?sozc77#icomoon") format("svg"); - font-weight: normal; - font-style: normal; + font-family: "icomoon"; + src: url("#{$icomoon-font-path}/icomoon.eot?sozc77"); + src: url("#{$icomoon-font-path}/icomoon.eot?sozc77#iefix") format("embedded-opentype"), + url("#{$icomoon-font-path}/icomoon.ttf?sozc77") format("truetype"), + url("#{$icomoon-font-path}/icomoon.woff?sozc77") format("woff"), + url("#{$icomoon-font-path}/icomoon.svg?sozc77#icomoon") format("svg"); + font-weight: normal; + font-style: normal; } [class^="icon-"], [class*=" icon-"] { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: "icomoon" !important; - font-style: normal; - font-weight: normal; - font-variant: normal; - display: inline-block; - text-transform: none; - line-height: 1; - transition: color $standard-animation-time ease; - -webkit-transition: color $standard-animation-time ease; - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: "icomoon" !important; + font-style: normal; + font-weight: normal; + font-variant: normal; + display: inline-block; + text-transform: none; + line-height: 1; + transition: color $standard-animation-time ease; + -webkit-transition: color $standard-animation-time ease; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } .icon-linkedin, @@ -171,204 +170,204 @@ $icon-linkedin1: "\eac9"; .icon-less, .icon-plus, .icon-email { - font-size: 34px; - color: $white; - @include mobile { - font-size: 30px; - } + font-size: 34px; + color: $white; + @include mobile { + font-size: 30px; + } } .icon-linkedin_speaker { - &:before { - content: $icon-linkedin_speaker; - } + &:before { + content: $icon-linkedin_speaker; + } } .icon-company { - &:before { - content: $icon-company; - } + &:before { + content: $icon-company; + } } .icon-clock { - &:before { - content: $icon-clock; - } + &:before { + content: $icon-clock; + } } .icon-location { - &:before { - content: $icon-location; - } + &:before { + content: $icon-location; + } } .icon-email { - &:before { - content: $icon-email; - } + &:before { + content: $icon-email; + } } .icon-instagram { - &:before { - content: $icon-instagram; - } + &:before { + content: $icon-instagram; + } } .icon-facebook { - &:before { - content: $icon-facebook; - } + &:before { + content: $icon-facebook; + } } .icon-linkedin { - &:before { - content: $icon-linkedin; - } + &:before { + content: $icon-linkedin; + } } .icon-menu { - &:before { - content: $icon-menu; - } + &:before { + content: $icon-menu; + } } .icon-plus { - &:before { - content: $icon-plus; - } + &:before { + content: $icon-plus; + } } .icon-less { - &:before { - content: $icon-less; - } + &:before { + content: $icon-less; + } } * { - margin: 0; - padding: 0; - border: 0; - outline: none; - box-sizing: border-box; + margin: 0; + padding: 0; + border: 0; + outline: none; + box-sizing: border-box; } a { - text-decoration: none; - transition: color $standard-animation-time ease; - -webkit-transition: color $standard-animation-time ease; + text-decoration: none; + transition: color $standard-animation-time ease; + -webkit-transition: color $standard-animation-time ease; } ul, li { - list-style: none; + list-style: none; } body { - width: 100%; - position: relative; - overflow-x: hidden; - font-family: $mont-font, sans-serif; - font-weight: $regular; + width: 100%; + position: relative; + overflow-x: hidden; + font-family: $mont-font, sans-serif; + font-weight: $regular; } button { - &:hover { - cursor: pointer; - } + &:hover { + cursor: pointer; + } } span { - display: block; + display: block; } section, article, aside { - padding: 100px 0; - @include portable { - padding: 55px 0; - } - @include mobile { - padding: 45px 0; - } + padding: 100px 0; + @include portable { + padding: 55px 0; + } + @include mobile { + padding: 45px 0; + } } img { - display: block; - max-width: 100%; - height: auto; + display: block; + max-width: 100%; + height: auto; } h1 { - font-size: 38px; - line-height: 34px; - color: $dark-grey; - font-weight: $bold; - text-transform: uppercase; - margin-bottom: 20px; - @include portable { - font-size: 34px; - margin-bottom: 10px; - } - @include mobile { - font-size: 30px; - } + font-size: 38px; + line-height: 34px; + color: $dark-grey; + font-weight: $bold; + text-transform: uppercase; + margin-bottom: 20px; + @include portable { + font-size: 34px; + margin-bottom: 10px; + } + @include mobile { + font-size: 30px; + } } h2 { - font-size: 28px; - line-height: 30px; - color: $dark-grey; - font-weight: $bold; - text-transform: uppercase; - margin-bottom: 10px; - @include portable { - font-size: 24px; - } - @include mobile { - font-size: 20px; - } + font-size: 28px; + line-height: 30px; + color: $dark-grey; + font-weight: $bold; + text-transform: uppercase; + margin-bottom: 10px; + @include portable { + font-size: 24px; + } + @include mobile { + font-size: 20px; + } } h3 { - font-size: 18px; - line-height: 24px; - font-weight: $bold; - text-transform: uppercase; - margin-bottom: 5px; - color: $dark-grey; + font-size: 18px; + line-height: 24px; + font-weight: $bold; + text-transform: uppercase; + margin-bottom: 5px; + color: $dark-grey; } p { - @include font($mont-font, 20px, 32px, $grey); - @include portable { - font-size: 16px; - line-height: 24px; - } + @include font($mont-font, 20px, 32px, $grey); + @include portable { + font-size: 16px; + line-height: 24px; + } } label { - display: inline-block; - @include font($mont-font, 22px, 22px, $dark-grey); - margin-bottom: 10px; - @include portable { - font-size: 20px; - margin-bottom: 5px; - } + display: inline-block; + @include font($mont-font, 22px, 22px, $dark-grey); + margin-bottom: 10px; + @include portable { + font-size: 20px; + margin-bottom: 5px; + } } input { - @include font($mont-font, 22px, 22px, $dark-grey); - padding: 20px 35px; - border: 1px solid $light-grey; - margin-bottom: 25px; - background-color: $white; - transition: border-color $transition-time ease-out; - -webkit-transition: border-color $transition-time ease-out; - &:hover { - border-color: $red; - } - &.error { - border: 5px solid $red; - } - @include portable { - font-size: 20px; - padding: 15px 25px; - } + @include font($mont-font, 22px, 22px, $dark-grey); + padding: 20px 35px; + border: 1px solid $light-grey; + margin-bottom: 25px; + background-color: $white; + transition: border-color $transition-time ease-out; + -webkit-transition: border-color $transition-time ease-out; + &:hover { + border-color: $red; + } + &.error { + border: 5px solid $red; + } + @include portable { + font-size: 20px; + padding: 15px 25px; + } } input[type="radio"] { - margin-left: 10px; + margin-left: 10px; } input[type="text"], @@ -376,9 +375,9 @@ input[type="email"], input[type="password"], input[type="tel"], input[type="number"] { - &::-webkit-input-placeholder { - color: $dark-grey; - } + &::-webkit-input-placeholder { + color: $dark-grey; + } } input[type="text"], @@ -386,1258 +385,1256 @@ input[type="email"], input[type="password"], input[type="tel"], input[type="number"] { - width: 100%; + width: 100%; } input[type="submit"] { - display: block; - margin-top: 25px; - margin-bottom: 0; - background-color: $red; - border-color: $red; - color: $white; - transition: color $standard-animation-time ease, background-color $standard-animation-time ease; - -webkit-transition: color $standard-animation-time ease, background-color $standard-animation-time ease; - cursor: pointer; - &:hover { - background-color: $white; - color: $red; - } + display: block; + margin-top: 25px; + margin-bottom: 0; + background-color: $red; + border-color: $red; + color: $white; + transition: color $standard-animation-time ease, background-color $standard-animation-time ease; + -webkit-transition: color $standard-animation-time ease, background-color $standard-animation-time ease; + cursor: pointer; + &:hover { + background-color: $white; + color: $red; + } } select { - padding: 10px; - border: 1px solid #eeeeee; - margin-left: 25px; + padding: 10px; + border: 1px solid #eeeeee; + margin-left: 25px; } .vertically-aligned { - display: flex; - align-items: center; - justify-content: center; + display: flex; + align-items: center; + justify-content: center; } .btn { - display: block; + display: block; } .btn-default { - font-family: "Bai Jamjuree", sans-serif; - font-size: 17px; - line-height: 21px; - color: $dark-grey; - display: table; - margin: 0 auto; - background-color: white; - font-weight: 700; - margin-top: 40px; - text-transform: uppercase; - border: 1px solid #eeeeee; - padding: 15px 60px; - transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; - -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; - &:hover { - border-color: $red; - background-color: $red; - color: $white; - } - @include mobile { - display: inline-block; - margin-top: 30px; - } + font-family: "Bai Jamjuree", sans-serif; + font-size: 17px; + line-height: 21px; + color: $dark-grey; + display: table; + margin: 0 auto; + background-color: white; + font-weight: 700; + margin-top: 40px; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 15px 60px; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + &:hover { + border-color: $red; + background-color: $red; + color: $white; + } + @include mobile { + display: inline-block; + margin-top: 30px; + } } hr { - @include size(55%, 1px); - background-color: $light-grey; - margin-bottom: 30px; - position: relative; - @include portable { - margin-bottom: 20px; - } - &::after { - content: " "; - @include size(30%, 1px); - @include position(absolute, 0, null, null, 0); - background-color: $red; - } + @include size(55%, 1px); + background-color: $light-grey; + margin-bottom: 30px; + position: relative; + @include portable { + margin-bottom: 20px; + } + &::after { + content: " "; + @include size(30%, 1px); + @include position(absolute, 0, null, null, 0); + background-color: $red; + } } .grey { - background-color: $light-grey; + background-color: $light-grey; } #error-message { - font-size: 115px; - line-height: 140px; - padding: 0 40px; - background-color: $black; - color: $white; - display: inline-block; - margin-bottom: 0; - @include position(absolute, 50%, null, null, 50%); - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - @include portable { - font-size: 75px; - line-height: 100px; - padding: 0 30px; - } - @include mobile { - font-size: 55px; - line-height: 80px; - padding: 0 25px; - } + font-size: 115px; + line-height: 140px; + padding: 0 40px; + background-color: $black; + color: $white; + display: inline-block; + margin-bottom: 0; + @include position(absolute, 50%, null, null, 50%); + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + @include portable { + font-size: 75px; + line-height: 100px; + padding: 0 30px; + } + @include mobile { + font-size: 55px; + line-height: 80px; + padding: 0 25px; + } } #main-menu { - @include position(fixed, 0, null, null, 0); - text-align: center; - z-index: 5; - width: 100%; - &.changed { - nav { - background-color: rgba(0, 0, 0, 0.8); - @include mobile { - background-color: rgba(0, 0, 0, 0.9); - } - } - } + @include position(fixed, 0, null, null, 0); + text-align: center; + z-index: 5; + width: 100%; + &.changed { + nav { + background-color: rgba(0, 0, 0, 0.8); + @include mobile { + background-color: rgba(0, 0, 0, 0.9); + } + } + } - nav { - display: inline-block; - width: 100%; - max-width: 1140px; - padding: 25px 15px; - background-color: rgba(0, 0, 0, 0.6); - transition: background-color $transition-time ease-out; - -webkit-transition: background-color $transition-time ease-out; - @include portable { - padding: 20px 30px; - } - @include mobile { - padding: 0; - background-color: rgba(0, 0, 0, 0.8); - } - #open-menu-mobile { - display: none; - @include font($mont-font, 18px, 22px, $white); - font-weight: $semi-bold; - letter-spacing: 2px; - text-transform: uppercase; - text-align: left; - padding: 15px 20px; - border-bottom: 1px solid $white; - @include mobile { - display: block; - } - &::after { - content: $icon-menu; - @include font("icomoon", 22px, 20px, $white); - font-weight: $regular; - float: right; - } - } - ul { - @include mobile { - display: none; - margin: 15px 0; - } - li { - display: inline-block; - @include font($mont-font, 19px, 21px, $white); - font-weight: $semi-bold; - margin: 0 20px; - text-transform: uppercase; - @include portable { - font-size: 17px; - line-height: 19px; - margin: 0 10px; - } - @include mobile { - width: 100%; - margin: 10px 0; - } - &.unavailable { - text-decoration: line-through; - } - a { - color: $white; - transition: color $transition-time ease-out; - -webkit-transition: color $transition-time ease-out; - position: relative; - &:hover { - color: $red; - @include mobile { - color: $white; - } - &::after { - width: 100%; - } - } - &::after { - content: " "; - @include position(absolute, null, null, -8px, 0); - @include size(0, 3px); - background-color: $red; - transition: width $transition-time ease-out; - @include portable { - bottom: -6px; - } - @include mobile { - display: none; - } - } - } - } - } - } + nav { + display: inline-block; + width: 100%; + max-width: 1140px; + padding: 25px 15px; + background-color: rgba(0, 0, 0, 0.6); + transition: background-color $transition-time ease-out; + -webkit-transition: background-color $transition-time ease-out; + @include portable { + padding: 20px 30px; + } + @include mobile { + padding: 0; + background-color: rgba(0, 0, 0, 0.8); + } + #open-menu-mobile { + display: none; + @include font($mont-font, 18px, 22px, $white); + font-weight: $semi-bold; + letter-spacing: 2px; + text-transform: uppercase; + text-align: left; + padding: 15px 20px; + border-bottom: 1px solid $white; + @include mobile { + display: block; + } + &::after { + content: $icon-menu; + @include font("icomoon", 22px, 20px, $white); + font-weight: $regular; + float: right; + } + } + ul { + @include mobile { + display: none; + margin: 15px 0; + } + li { + display: inline-block; + @include font($mont-font, 19px, 21px, $white); + font-weight: $semi-bold; + margin: 0 20px; + text-transform: uppercase; + @include portable { + font-size: 17px; + line-height: 19px; + margin: 0 10px; + } + @include mobile { + width: 100%; + margin: 10px 0; + } + &.unavailable { + text-decoration: line-through; + } + a { + color: $white; + transition: color $transition-time ease-out; + -webkit-transition: color $transition-time ease-out; + position: relative; + &:hover { + color: $red; + @include mobile { + color: $white; + } + &::after { + width: 100%; + } + } + &::after { + content: " "; + @include position(absolute, null, null, -8px, 0); + @include size(0, 3px); + background-color: $red; + transition: width $transition-time ease-out; + @include portable { + bottom: -6px; + } + @include mobile { + display: none; + } + } + } + } + } + } } #logo-enei { - width: 221px; - @include position(fixed, calc(50% - 166px), null, null, calc(50% - 110px)); - z-index: 10; - @include portable { - width: 175px; - top: calc(50% - 131px); - left: calc(50% - 87px); - } - @include mobile { - width: 125px; - top: calc(50% - 70px); - left: calc(50% - 62px); - } - #linha { - fill: transparent; - -webkit-animation: animateLineLogo 1s 0.25s forwards; /* Safari & Chrome */ - -moz-animation: animateLineLogo 1s 0.25s forwards; /* Firefox */ - animation: animateLineLogo 1s 0.25s forwards; - } - .letras-logo { - fill: transparent; - animation: animateLettersLogo 0.25s 0.7s forwards ease-in; - } + width: 221px; + @include position(fixed, calc(50% - 166px), null, null, calc(50% - 110px)); + z-index: 10; + @include portable { + width: 175px; + top: calc(50% - 131px); + left: calc(50% - 87px); + } + @include mobile { + width: 125px; + top: calc(50% - 70px); + left: calc(50% - 62px); + } + #linha { + fill: transparent; + -webkit-animation: animateLineLogo 1s 0.25s forwards; /* Safari & Chrome */ + -moz-animation: animateLineLogo 1s 0.25s forwards; /* Firefox */ + animation: animateLineLogo 1s 0.25s forwards; + } + .letras-logo { + fill: transparent; + animation: animateLettersLogo 0.25s 0.7s forwards ease-in; + } } #apresentation { - height: 100vh; - background: url("imgs/coimbra-image.jpg") no-repeat center; - background-size: cover; - background-attachment: fixed; - position: relative; - &.main-landing { - z-index: 10; - } + height: 100vh; + background: url("imgs/coimbra-image.jpg") no-repeat center; + background-size: cover; + background-attachment: fixed; + position: relative; + &.main-landing { + z-index: 10; + } - &.main-landing::after { - content: " "; - @include position(fixed, 0, null, null, 0); - @include size(100%, 100%); - background-color: $white; - opacity: 1; - transition: opacity 150ms ease-out; - } - &.main-landing.animated { - z-index: 0; - &::after { - opacity: 0; - } - #logo-enei { - position: absolute; - } - #linha { - fill: $black; - animation: none; - } - .letras-logo { - fill: $white; - animation: none; - } - } - @include mobile { - height: 60vh; - background-position: bottom right; - background-attachment: inherit; - } + &.main-landing::after { + content: " "; + @include position(fixed, 0, null, null, 0); + @include size(100%, 100%); + background-color: $white; + opacity: 1; + transition: opacity 150ms ease-out; + } + &.main-landing.animated { + z-index: 0; + &::after { + opacity: 0; + } + #logo-enei { + position: absolute; + } + #linha { + fill: $black; + animation: none; + } + .letras-logo { + fill: $white; + animation: none; + } + } + @include mobile { + height: 60vh; + background-position: bottom right; + background-attachment: inherit; + } } #enei { - background-color: $white; - background: url("imgs/cubes-image.png") no-repeat top right; - background-size: 20%; - @include portable { - background-size: 25%; - } - @include mobile { - background-image: none; - } + background-color: $white; + background: url("imgs/cubes-image.png") no-repeat top right; + background-size: 20%; + @include portable { + background-size: 25%; + } + @include mobile { + background-image: none; + } } .pre-h1 { - @include font($mont-font, 20px, 22px, $grey); - font-weight: $semi-bold; - text-transform: uppercase; - margin-bottom: 10px; - @include portable { - font-size: 17px; - } - @include mobile { - margin-bottom: 5px; - } + @include font($mont-font, 20px, 22px, $grey); + font-weight: $semi-bold; + text-transform: uppercase; + margin-bottom: 10px; + @include portable { + font-size: 17px; + } + @include mobile { + margin-bottom: 5px; + } } #countdown { - background-color: $dark-blue; - padding: 80px 0; - text-align: center; - @include portable { - padding: 50px 0; - } - @include mobile { - padding: 40px 0; - } - div { - display: inline-block; - margin: 0 30px; - @include portable { - margin: 0 15px; - } - @include mobile { - margin: 0 5px; - } - span { - @include font($mont-font, 86px, 66px, $white); - font-weight: $bold; - display: block; - margin-bottom: 20px; - @include portable { - font-size: 66px; - margin-bottom: 5px; - } - @include mobile { - font-size: 50px; - line-height: 55px; - margin-bottom: 0; - } - } - .smalltext { - @include font($mont-font, 25px, 25px, $red); - font-weight: $bold; - display: block; - @include portable { - font-size: 22px; - } - @include mobile { - font-size: 16px; - } - } - } + background-color: $dark-blue; + padding: 80px 0; + text-align: center; + @include portable { + padding: 50px 0; + } + @include mobile { + padding: 40px 0; + } + div { + display: inline-block; + margin: 0 30px; + @include portable { + margin: 0 15px; + } + @include mobile { + margin: 0 5px; + } + span { + @include font($mont-font, 86px, 66px, $white); + font-weight: $bold; + display: block; + margin-bottom: 20px; + @include portable { + font-size: 66px; + margin-bottom: 5px; + } + @include mobile { + font-size: 50px; + line-height: 55px; + margin-bottom: 0; + } + } + .smalltext { + @include font($mont-font, 25px, 25px, $red); + font-weight: $bold; + display: block; + @include portable { + font-size: 22px; + } + @include mobile { + font-size: 16px; + } + } + } } #available-soon { - text-align: center; - h1 { - margin-bottom: 40px; - line-height: 50px; - @include mobile { - font-size: 25px; - line-height: 35px; - margin-bottom: 30px; - } - } - #wave { - .dot { - display: inline-block; - @include size(25px, 25px); - border-radius: 50%; - margin: 0 5px; - animation: wave 1.3s ease-out infinite; - @include mobile { - @include size(20px, 20px); - margin: 0 2px; - } - &:nth-child(1) { - background-color: #858683; - } - &:nth-child(2) { - background-color: #e82d28; - animation-delay: -1.1s; - } - &:nth-child(3) { - background-color: #5f2021; - animation-delay: -0.9s; - } - } - } + text-align: center; + h1 { + margin-bottom: 40px; + line-height: 50px; + @include mobile { + font-size: 25px; + line-height: 35px; + margin-bottom: 30px; + } + } + #wave { + .dot { + display: inline-block; + @include size(25px, 25px); + border-radius: 50%; + margin: 0 5px; + animation: wave 1.3s ease-out infinite; + @include mobile { + @include size(20px, 20px); + margin: 0 2px; + } + &:nth-child(1) { + background-color: #858683; + } + &:nth-child(2) { + background-color: #e82d28; + animation-delay: -1.1s; + } + &:nth-child(3) { + background-color: #5f2021; + animation-delay: -0.9s; + } + } + } - @keyframes wave { - 0%, - 100% { - transform: initial scale(1); - } + @keyframes wave { + 0%, + 100% { + transform: initial scale(1); + } - 50% { - transform: translateY(-10px) scale(1.2); - } - } + 50% { + transform: translateY(-10px) scale(1.2); + } + } } #programa { - background-color: $dark-blue; - text-align: center; - h1, - .pre-h1 { - color: $light-grey; - } - hr { - display: table; - margin: 0 auto; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } + background-color: $dark-blue; + text-align: center; + h1, + .pre-h1 { + color: $light-grey; + } + hr { + display: table; + margin: 0 auto; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } } #precos { - text-align: center; - position: relative; - /*@include portable { + text-align: center; + position: relative; + /*@include portable { padding-bottom: 100px; }*/ - hr { - display: table; - margin: 0 auto 60px; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } - .price-block { - display: inline-flex; - flex-direction: column; - justify-content: space-between; - width: 100%; - min-height: 460px; - max-width: 260px; - border: 1px solid $light-grey; - padding: 0 30px 40px; - margin: 0 15px; - transition: transform $transition-time ease-out; - -webkit-transition: transform $transition-time ease-out; - @include portable { - max-width: 210px; - padding: 0 15px 40px; - margin: 0 10px; - } - @include mobile { - max-width: 350px; - min-height: inherit; - padding: 0 15px 40px; - margin: 0 auto 35px; - display: table; - } - &:hover { - transform: scale(1.05); - -webkit-transform: scale(1.05); - } - hr { - margin-bottom: 10px; - margin-top: 25px; - width: 100%; - border: 1px solid $light-grey; - border-style: dashed; - background-color: transparent; - &::after { - display: none; - } - } - .price { - @include font($mont-font, 58px, 58px, $dark-grey); - font-weight: $semi-bold; - @include mobile { - margin: 20px 0; - } - span { - font-size: 30px; - vertical-align: super; - margin-right: 5px; - } - &.exception { - &::after { - content: "*/**"; - font-size: 13px; - vertical-align: top; - } - } - } - .label { - @include font($mont-font, 22px, 22px, $grey); - font-weight: $semi-bold; - margin-top: 10px; - } - .type { - width: 100%; - padding: 20px 0; - background-color: $red; - text-align: center; - @include font($mont-font, 18px, 18px, $white); - font-weight: $bold; - text-transform: uppercase; - margin-top: -1px; - } - .buy-button { - @include font($mont-font, 14px, 14px, $grey); - font-weight: $bold; - text-transform: uppercase; - border: 1px solid $light-grey; - padding: 10px 30px; - transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - &:hover { - border-color: $red; - background-color: $red; - color: $white; - } - @include mobile { - display: inline-block; - margin-top: 30px; - } - } - .options { - font-family: "Bai Jamjuree", sans-serif; - font-size: 16px; - line-height: 23px; - color: #777777; - font-weight: 400; - margin-top: 20px; - display: inline-block; - } - &.disable { - &:hover { - transform: scale(1); - -webkit-transform: scale(1); - } - .buy-button { - &:hover { - border-color: $light-grey; - background-color: transparent; - color: $grey; - } - } - } - } - .ps { - @include position(absolute, null, 20px, 20px, null); - text-align: right; - p { - font-size: 13px; - color: $dark-grey; - text-transform: uppercase; - } - } + hr { + display: table; + margin: 0 auto 60px; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } + .price-block { + display: inline-flex; + flex-direction: column; + justify-content: space-between; + width: 100%; + min-height: 460px; + max-width: 260px; + border: 1px solid $light-grey; + padding: 0 30px 40px; + margin: 0 15px; + transition: transform $transition-time ease-out; + -webkit-transition: transform $transition-time ease-out; + @include portable { + max-width: 210px; + padding: 0 15px 40px; + margin: 0 10px; + } + @include mobile { + max-width: 350px; + min-height: inherit; + padding: 0 15px 40px; + margin: 0 auto 35px; + display: table; + } + &:hover { + transform: scale(1.05); + -webkit-transform: scale(1.05); + } + hr { + margin-bottom: 10px; + margin-top: 25px; + width: 100%; + border: 1px solid $light-grey; + border-style: dashed; + background-color: transparent; + &::after { + display: none; + } + } + .price { + @include font($mont-font, 58px, 58px, $dark-grey); + font-weight: $semi-bold; + @include mobile { + margin: 20px 0; + } + span { + font-size: 30px; + vertical-align: super; + margin-right: 5px; + } + &.exception { + &::after { + content: "*/**"; + font-size: 13px; + vertical-align: top; + } + } + } + .label { + @include font($mont-font, 22px, 22px, $grey); + font-weight: $semi-bold; + margin-top: 10px; + } + .type { + width: 100%; + padding: 20px 0; + background-color: $red; + text-align: center; + @include font($mont-font, 18px, 18px, $white); + font-weight: $bold; + text-transform: uppercase; + margin-top: -1px; + } + .buy-button { + @include font($mont-font, 14px, 14px, $grey); + font-weight: $bold; + text-transform: uppercase; + border: 1px solid $light-grey; + padding: 10px 30px; + transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + &:hover { + border-color: $red; + background-color: $red; + color: $white; + } + @include mobile { + display: inline-block; + margin-top: 30px; + } + } + .options { + font-family: "Bai Jamjuree", sans-serif; + font-size: 16px; + line-height: 23px; + color: #777777; + font-weight: 400; + margin-top: 20px; + display: inline-block; + } + &.disable { + &:hover { + transform: scale(1); + -webkit-transform: scale(1); + } + .buy-button { + &:hover { + border-color: $light-grey; + background-color: transparent; + color: $grey; + } + } + } + } + .ps { + @include position(absolute, null, 20px, 20px, null); + text-align: right; + p { + font-size: 13px; + color: $dark-grey; + text-transform: uppercase; + } + } } #app { - background-color: $light-grey; - text-align: center; - padding-bottom: 0; - h1 { - color: $black; - margin-bottom: 70px; - } + background-color: $light-grey; + text-align: center; + padding-bottom: 0; + h1 { + color: $black; + margin-bottom: 70px; + } } #ctf { - background-image: url("imgs/image.png"); - text-align: center; + background-image: url("imgs/image.png"); + text-align: center; - h1 { - color: white; - margin-top: 80px; - margin-bottom: 50px; - } - .button-ctf { - &:hover { - border-color: #cc1a17; - background-color: white; - color: $grey; - } - } + h1 { + color: white; + margin-top: 80px; + margin-bottom: 50px; + } + .button-ctf { + &:hover { + border-color: #cc1a17; + background-color: white; + color: $grey; + } + } } .prectf-h1 { - @include font($mont-font, 20px, 22px, $grey); - font-weight: $semi-bold; - text-transform: uppercase; - margin-bottom: 100px; - @include portable { - font-size: 17px; - } - @include mobile { - margin-bottom: 5px; - } - color: #cc1a17; + @include font($mont-font, 20px, 22px, $grey); + font-weight: $semi-bold; + text-transform: uppercase; + margin-bottom: 100px; + @include portable { + font-size: 17px; + } + @include mobile { + margin-bottom: 5px; + } + color: #cc1a17; } .button-ctf { - font-family: "Bai Jamjuree", sans-serif; - font-size: 18px; - line-height: 14px; - color: #cc1a17; - font-weight: 700; - text-transform: uppercase; - border: 1px solid #eeeeee; - padding: 20px 40px; - margin: 200; - transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; - -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + font-family: "Bai Jamjuree", sans-serif; + font-size: 18px; + line-height: 14px; + color: #cc1a17; + font-weight: 700; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 20px 40px; + margin: 200; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; } #faqs, #tickets { - background: url("imgs/cubes2-image.png") no-repeat bottom right; - background-size: 30%; + background: url("imgs/cubes2-image.png") no-repeat bottom right; + background-size: 30%; } #faqs { - p { - a { - color: $dark-grey; - font-weight: $bold; - &:hover { - color: $red; - } - } - } + p { + a { + color: $dark-grey; + font-weight: $bold; + &:hover { + color: $red; + } + } + } } #accordion { - li { - margin-bottom: 15px; - &:last-child { - margin-bottom: 0; - } - &.open, - &:hover { - .toggle { - background-color: $red; - border-color: $red; - color: $white; - } - } - .toggle { - @include font($mont-font, 22px, 22px, $dark-grey); - text-transform: uppercase; - display: block; - padding: 20px 35px; - border: 1px solid $light-grey; - background-color: $white; - transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - @include mobile { - font-size: 19px; - line-height: 24px; - padding: 20px; - } - } - .content-accordion { - display: none; - padding: 45px 35px; - background-color: $white; - border: 1px dashed $light-grey; - border-top: 0; - @include mobile { - padding: 25px; - } - p { - margin-bottom: 5px; - } - } - } + li { + margin-bottom: 15px; + &:last-child { + margin-bottom: 0; + } + &.open, + &:hover { + .toggle { + background-color: $red; + border-color: $red; + color: $white; + } + } + .toggle { + @include font($mont-font, 22px, 22px, $dark-grey); + text-transform: uppercase; + display: block; + padding: 20px 35px; + border: 1px solid $light-grey; + background-color: $white; + transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + @include mobile { + font-size: 19px; + line-height: 24px; + padding: 20px; + } + } + .content-accordion { + display: none; + padding: 45px 35px; + background-color: $white; + border: 1px dashed $light-grey; + border-top: 0; + @include mobile { + padding: 25px; + } + p { + margin-bottom: 5px; + } + } + } } #sponsors { - text-align: center; - hr { - display: table; - margin: 0 auto; - background-color: $dark-grey; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } - .vertically-aligned { - @include portable { - flex-wrap: wrap; - } - } - .sponsor-image { - display: inline-block; - margin: 40px 20px 0; - max-width: 200px; - filter: grayscale(0.2); - transform: scale(1); - transition: all $transition-time ease-in-out; - &:hover { - filter: grayscale(0); - transform: scale(1.03); - } - @include mobile { - max-width: 160px; - margin: 40px 15px 0; - } - } - .gold, - .silver, - .bronze { - h1 { - font-size: 30px; - line-height: 26px; - margin-top: 75px; - @include portable { - font-size: 27px; - } - @include mobile { - font-size: 23px; - } - } - } - .gold { - .sponsor-image { - max-width: 135px; - @include portable { - max-width: 110px; - } - } - } - .silver { - .sponsor-image { - max-width: 165px; - } - } - .bronze { - .sponsor-image { - max-width: 115px; - img { - max-height: 90px; - } - } - } + text-align: center; + hr { + display: table; + margin: 0 auto; + background-color: $dark-grey; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } + .vertically-aligned { + @include portable { + flex-wrap: wrap; + } + } + .sponsor-image { + display: inline-block; + margin: 40px 20px 0; + max-width: 200px; + filter: grayscale(0.2); + transform: scale(1); + transition: all $transition-time ease-in-out; + &:hover { + filter: grayscale(0); + transform: scale(1.03); + } + @include mobile { + max-width: 160px; + margin: 40px 15px 0; + } + } + .gold, + .silver, + .bronze { + h1 { + font-size: 30px; + line-height: 26px; + margin-top: 75px; + @include portable { + font-size: 27px; + } + @include mobile { + font-size: 23px; + } + } + } + .gold { + .sponsor-image { + max-width: 135px; + @include portable { + max-width: 110px; + } + } + } + .silver { + .sponsor-image { + max-width: 165px; + } + } + .bronze { + .sponsor-image { + max-width: 115px; + img { + max-height: 90px; + } + } + } } #social-network { - display: flex; - justify-content: flex-end; - li { - margin-left: 20px; - @include portable { - margin-left: 10px; - } - a { - transition: color $transition-time ease-out; - -webkit-transition: color $transition-time ease-out; - &:hover { - color: $red; - } - } - } + display: flex; + justify-content: flex-end; + li { + margin-left: 20px; + @include portable { + margin-left: 10px; + } + a { + transition: color $transition-time ease-out; + -webkit-transition: color $transition-time ease-out; + &:hover { + color: $red; + } + } + } } footer { - padding: 25px 0; - background-color: $black; - border-top: 1px solid $white; - @include portable { - padding: 20px 0; - } - p { - color: $white; - font-size: 13px; - line-height: 15px; - margin-top: 10px; - @include portable { - font-size: 12px; - } - @include mobile { - margin-top: 0; - } - } + padding: 25px 0; + background-color: $black; + border-top: 1px solid $white; + @include portable { + padding: 20px 0; + } + p { + color: $white; + font-size: 13px; + line-height: 15px; + margin-top: 10px; + @include portable { + font-size: 12px; + } + @include mobile { + margin-top: 0; + } + } } #tab-links { - margin: 50px 0 25px; - display: flex; - .tab-label { - display: none; - &.visible { - display: inline-flex; - } - &.active { - a { - border-color: $red; - background-color: $red; - color: $white; - z-index: 2; - } - } - a { - border: 1px solid $dark-grey; - display: inline-block; - @include font($mont-font, 20px, 22px, $dark-grey); - padding: 20px 15px; - -webkit-transition: border-color $transition-time ease, color $transition-time ease, - background-color $transition-time ease; - transition: border-color $transition-time ease, color $transition-time ease, - background-color $transition-time ease; - margin-right: -1px; - @include portable { - padding: 15px; - } - } - } + margin: 50px 0 25px; + display: flex; + .tab-label { + display: none; + &.visible { + display: inline-flex; + } + &.active { + a { + border-color: $red; + background-color: $red; + color: $white; + z-index: 2; + } + } + a { + border: 1px solid $dark-grey; + display: inline-block; + @include font($mont-font, 20px, 22px, $dark-grey); + padding: 20px 15px; + -webkit-transition: border-color $transition-time ease, color $transition-time ease, + background-color $transition-time ease; + transition: border-color $transition-time ease, color $transition-time ease, + background-color $transition-time ease; + margin-right: -1px; + @include portable { + padding: 15px; + } + } + } } #tab-container { - .tab { - display: none; - &.visible { - display: block; - } - } + .tab { + display: none; + &.visible { + display: block; + } + } } #career-path { - text-align: center; - hr { - display: table; - margin: 0 auto 60px; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } - h2 { - color: $white; - font-size: 18px; - line-height: 22px; - margin-bottom: 10px; - } - .powered-by { - @include font($mont-font, 16px, 20px, $white); - margin-bottom: 15px; - } - .separator { - display: block; - margin: 0 auto; - @include size(40%, 1px); - background-color: $white; - margin-bottom: 10px; - } - .career-path-links { - position: relative; - padding: 20px; - display: inline-block; - &::after { - content: ""; - @include size(calc(100% + 8px), calc(100% + 8px)); - @include position(absolute, -5px, null, null, -5px); - border: 1px solid red; - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - left: -5px; - left: -5px; - transition: transform $transition-time ease-in-out, border-width $transition-time ease-in-out, - top $transition-time ease-in-out, border-width $transition-time ease-in-out; - } - &:hover:after { - -webkit-transform: skewX(0); - transform: skewX(0); - border-width: 2px; - top: -6px; - left: -6px; - } + text-align: center; + hr { + display: table; + margin: 0 auto 60px; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } + h2 { + color: $white; + font-size: 18px; + line-height: 22px; + margin-bottom: 10px; + } + .powered-by { + @include font($mont-font, 16px, 20px, $white); + margin-bottom: 15px; + } + .separator { + display: block; + margin: 0 auto; + @include size(40%, 1px); + background-color: $white; + margin-bottom: 10px; + } + .career-path-links { + position: relative; + padding: 20px; + display: inline-block; + &::after { + content: ""; + @include size(calc(100% + 8px), calc(100% + 8px)); + @include position(absolute, -5px, null, null, -5px); + border: 1px solid red; + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + left: -5px; + left: -5px; + transition: transform $transition-time ease-in-out, border-width $transition-time ease-in-out, + top $transition-time ease-in-out, border-width $transition-time ease-in-out; + } + &:hover:after { + -webkit-transform: skewX(0); + transform: skewX(0); + border-width: 2px; + top: -6px; + left: -6px; + } - img { - -webkit-filter: invert(100%); - filter: invert(100%); - max-width: 70%; - margin: 0 auto; - } - } - .ai { - .career-path-links { - background-color: $ai-color; - &::after { - border-color: $ai-color; - } - } - } - .web { - .career-path-links { - background-color: $web-color; - &::after { - border-color: $web-color; - } - } - } + img { + -webkit-filter: invert(100%); + filter: invert(100%); + max-width: 70%; + margin: 0 auto; + } + } + .ai { + .career-path-links { + background-color: $ai-color; + &::after { + border-color: $ai-color; + } + } + } + .web { + .career-path-links { + background-color: $web-color; + &::after { + border-color: $web-color; + } + } + } } #speakers { - text-align: center; - hr { - display: table; - margin: 0 auto 60px; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } + text-align: center; + hr { + display: table; + margin: 0 auto 60px; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } } #calendar { - h1 { - text-align: center; - } - hr { - display: table; - margin: 0 auto 60px; - background-color: #353535; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } + h1 { + text-align: center; + } + hr { + display: table; + margin: 0 auto 60px; + background-color: #353535; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } } .career-apresentation { - z-index: 1; - @include position(absolute, 50%, null, null, 50%); - transform: translate(-50%, -50%); - .career-name { - font-size: 46px; - font-weight: $bold; - color: $white; - text-transform: uppercase; - text-align: center; - span { - font-size: 22px; - text-transform: none; - } - } - img { - -webkit-filter: invert(100%); - filter: invert(100%); - max-width: 250px; - margin: 35px auto 0; - } + z-index: 1; + @include position(absolute, 50%, null, null, 50%); + transform: translate(-50%, -50%); + .career-name { + font-size: 46px; + font-weight: $bold; + color: $white; + text-transform: uppercase; + text-align: center; + span { + font-size: 22px; + text-transform: none; + } + } + img { + -webkit-filter: invert(100%); + filter: invert(100%); + max-width: 250px; + margin: 35px auto 0; + } } .career-path { - #apresentation { - &::after { - content: " "; - @include position(absolute, 0, null, null, 0); - @include size(100%, 100%); - opacity: 0.5; - } - } + #apresentation { + &::after { + content: " "; + @include position(absolute, 0, null, null, 0); + @include size(100%, 100%); + opacity: 0.5; + } + } } .speaker-button { - display: block; - margin-bottom: 50px; - position: relative; + display: block; + margin-bottom: 50px; + position: relative; - &:hover { - .speaker-image::before { - border-color: $ai-color; - } - .speaker-image::after { - opacity: 0.85; - } - .company-image { - opacity: 1; - width: 85%; - } - } + &:hover { + .speaker-image::before { + border-color: $ai-color; + } + .speaker-image::after { + opacity: 0.85; + } + .company-image { + opacity: 1; + width: 85%; + } + } - .speaker-image { - @include size(200px, 200px); - display: table; - margin: 0 auto 20px; - position: relative; - &::before { - content: ""; - @include size(calc(100% + 8px), calc(100% + 8px)); - @include position(absolute, -6px, null, null, -6px); - border: 2px solid $dark-grey; - transition: border-color $transition-time ease-in-out; - } - &::after { - content: " "; - @include position(absolute, 0, null, null, 0); - @include size(100%, 100%); - background-color: $white; - transition: opacity $transition-time ease-in-out; - opacity: 0; - } - } - .company-image { - @include position(absolute, 50%, null, null, 50%); - transform: translate(-50%, -50%); - width: 82%; - z-index: 1; - transition: opacity $transition-time ease-in-out, width $transition-time ease-in-out; - opacity: 0; - } - .speaker-name { - font-weight: $bold; - font-size: 22px; - line-height: 26px; - color: $dark-grey; - margin-bottom: 5px; - } - .speaker-company { - font-weight: $semi-bold; - font-size: 16px; - line-height: 20px; - color: $grey; - } + .speaker-image { + @include size(200px, 200px); + display: table; + margin: 0 auto 20px; + position: relative; + &::before { + content: ""; + @include size(calc(100% + 8px), calc(100% + 8px)); + @include position(absolute, -6px, null, null, -6px); + border: 2px solid $dark-grey; + transition: border-color $transition-time ease-in-out; + } + &::after { + content: " "; + @include position(absolute, 0, null, null, 0); + @include size(100%, 100%); + background-color: $white; + transition: opacity $transition-time ease-in-out; + opacity: 0; + } + } + .company-image { + @include position(absolute, 50%, null, null, 50%); + transform: translate(-50%, -50%); + width: 82%; + z-index: 1; + transition: opacity $transition-time ease-in-out, width $transition-time ease-in-out; + opacity: 0; + } + .speaker-name { + font-weight: $bold; + font-size: 22px; + line-height: 26px; + color: $dark-grey; + margin-bottom: 5px; + } + .speaker-company { + font-weight: $semi-bold; + font-size: 16px; + line-height: 20px; + color: $grey; + } } /* CAREER PATH COLORS */ .ai-color { - #main-menu nav ul li a:hover, - #event-days-list button.selected, - #event-days-list button:hover, - #content-container h2, - #social-network ul li a:hover, - #content-container .event-description:hover { - color: $ai-color; - } - #main-menu nav ul li a::after, - #apresentation::after, - hr::after, - #calendar-container .event-details::before { - background-color: $ai-color; - } + #main-menu nav ul li a:hover, + #event-days-list button.selected, + #event-days-list button:hover, + #content-container h2, + #social-network ul li a:hover, + #content-container .event-description:hover { + color: $ai-color; + } + #main-menu nav ul li a::after, + #apresentation::after, + hr::after, + #calendar-container .event-details::before { + background-color: $ai-color; + } } #calendar-container { - .event-details { - &::before { - content: " "; - @include position(absolute, 5px, null, null, 0px); - @include size(1px, 100%); - background-color: $red; - } - } - .event-data { - margin-top: 50px; - &:first-child { - margin-top: 0; - } - h2:first-child { - margin-top: 0; - } - } + .event-details { + &::before { + content: " "; + @include position(absolute, 5px, null, null, 0px); + @include size(1px, 100%); + background-color: $red; + } + } + .event-data { + margin-top: 50px; + &:first-child { + margin-top: 0; + } + h2:first-child { + margin-top: 0; + } + } } #event-days-list { - border-bottom: 1px solid $dark-grey; - display: flex; - button { - width: 25%; - padding: 20px 0; - background-color: transparent; - color: $dark-grey; - font-size: 32px; - font-weight: 700; - transition: color $transition-time ease, transform $transition-time ease; - &:last-child { - border-right: 0; - } - &.selected { - color: $red; - &:hover { - cursor: default; - transform: scale(1); - } - } - &:hover { - color: $red; - transform: scale(1.02); - } - span { - display: block; - font-weight: 500; - font-size: 20px; - } - } + border-bottom: 1px solid $dark-grey; + display: flex; + button { + width: 25%; + padding: 20px 0; + background-color: transparent; + color: $dark-grey; + font-size: 32px; + font-weight: 700; + transition: color $transition-time ease, transform $transition-time ease; + &:last-child { + border-right: 0; + } + &.selected { + color: $red; + &:hover { + cursor: default; + transform: scale(1); + } + } + &:hover { + color: $red; + transform: scale(1.02); + } + span { + display: block; + font-weight: 500; + font-size: 20px; + } + } } .day-night-filter { - border-bottom: 1px solid $dark-grey; - button { - width: 50%; - padding: 30px 0; - border-right: 1px solid $dark-grey; + border-bottom: 1px solid $dark-grey; + button { + width: 50%; + padding: 30px 0; + border-right: 1px solid $dark-grey; - &:last-child { - border-right: 0; - } - } - .half-day { - text-align: center; - padding: 20px 0; - color: $dark-grey; - font-size: 27px; - font-weight: 700; - text-transform: uppercase; - } + &:last-child { + border-right: 0; + } + } + .half-day { + text-align: center; + padding: 20px 0; + color: $dark-grey; + font-size: 27px; + font-weight: 700; + text-transform: uppercase; + } } #content-container { - padding: 30px 30px 0; - color: $dark-grey; - .content { - display: none; - &.visible { - display: block; - } - } + padding: 30px 30px 0; + color: $dark-grey; + .content { + display: none; + &.visible { + display: block; + } + } - .event-description { - font-family: $mont-font; - font-weight: 600; - font-size: 17px; - background-color: transparent; - color: $dark-grey; - transition: color $transition-time ease; - &:hover { - color: $red; - } - span { - display: inline-block; - font-size: 16px; - margin-right: 10px; - } - } - section { - padding: 0; - } - h2 { - font-size: 20px; - line-height: 28px; - color: $red; - margin-bottom: 10px; - margin-top: 35px; - } - h3 { - margin-bottom: 5px; - } - .event-location { - color: $dark-grey; - margin-bottom: 5px; - display: block; - span { - margin-right: 10px; - transition: none; - } - } - a.event-location:hover { - color: $red; - } - .event-time { - font-size: 24px; - font-weight: 700; - line-height: 30px; - } + .event-description { + font-family: $mont-font; + font-weight: 600; + font-size: 17px; + background-color: transparent; + color: $dark-grey; + transition: color $transition-time ease; + &:hover { + color: $red; + } + span { + display: inline-block; + font-size: 16px; + margin-right: 10px; + } + } + section { + padding: 0; + } + h2 { + font-size: 20px; + line-height: 28px; + color: $red; + margin-bottom: 10px; + margin-top: 35px; + } + h3 { + margin-bottom: 5px; + } + .event-location { + color: $dark-grey; + margin-bottom: 5px; + display: block; + span { + margin-right: 10px; + transition: none; + } + } + a.event-location:hover { + color: $red; + } + .event-time { + font-size: 24px; + font-weight: 700; + line-height: 30px; + } - .container-speaker-image { - &::after { - content: " "; - } - } + .container-speaker-image { + &::after { + content: " "; + } + } } #institucional-support { - padding: 60px 0; - h3 { - margin-bottom: 25px; - } - a { - display: inline-block; - margin: 0 20px; - @include portable { - margin: 10px; - max-width: 70px; - } + padding: 60px 0; + h3 { + margin-bottom: 25px; + } + a { + display: inline-block; + margin: 0 20px; + @include portable { + margin: 10px; + max-width: 70px; + } - &:first-child { - margin-left: 0; - } - } - .vertically-aligned { - justify-content: flex-start; - @include portable { - flex-wrap: wrap; - } - @include mobile{ - justify-content: flex-start; - } - } - .junisec { - max-width: 90px; - @include mobile { - max-width: 70px; - } - } - .isec { - max-width: 150px; - @include mobile { - max-width: 120px; - } - } - .isec2 { - max-width: 150px; - @include mobile { - max-width: 120px; - } - } - .iscac { - max-width: 115px; - @include mobile { - max-width: 90px; - } - } - .fca { - max-width: 70px; - @include mobile { - max-width: 50px; - } - } - .quinta-das-lagrimas { - width: auto; - max-width: 88px; - @include mobile { - max-width: 90px; - } - } + &:first-child { + margin-left: 0; + } + } + .vertically-aligned { + justify-content: flex-start; + @include portable { + flex-wrap: wrap; + } + @include mobile { + justify-content: flex-start; + } + } + .junisec { + max-width: 90px; + @include mobile { + max-width: 70px; + } + } + .isec { + max-width: 150px; + @include mobile { + max-width: 120px; + } + } + .isec2 { + max-width: 150px; + @include mobile { + max-width: 120px; + } + } + .iscac { + max-width: 115px; + @include mobile { + max-width: 90px; + } + } + .fca { + max-width: 70px; + @include mobile { + max-width: 50px; + } + } + .quinta-das-lagrimas { + width: auto; + max-width: 88px; + @include mobile { + max-width: 90px; + } + } } - - .ctf-header { background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); flex: 1; @@ -1662,6 +1659,10 @@ footer { td { text-align: center; } + @media screen and (max-width: $mobile) { + width: 95%; + padding-top: 20px; + } } .about-top { color: white; @@ -1669,379 +1670,591 @@ footer { text-align: center; margin: 2%; } + @media screen and (max-width: $mobile) { + width: 100%; + } } .container-app { - background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); - height: 40% !important; - - .header-app { - margin: auto; - width: 50%; - - @media screen and (max-width: $mobile) { - width: 100%; - float: none; - padding: 10px; - h1 { - line-height: 50px; - } - img { - width: 100%; - } - } - - h1 { - padding-top: 9rem !important; - color: white; - text-align: center; - font-size: 50px; - padding-bottom: 2rem !important; - font-weight: normal; - } - h3 { - text-align: center; - color: white; - font-weight: normal; - padding-bottom: 2rem !important; - } - } + background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); + height: 40% !important; + + .header-app { + margin: auto; + width: 50%; + + @media screen and (max-width: $mobile) { + width: 100%; + float: none; + padding: 10px; + h1 { + line-height: 50px; + } + img { + width: 100%; + } + } + + h1 { + padding-top: 9rem !important; + color: white; + text-align: center; + font-size: 50px; + padding-bottom: 2rem !important; + font-weight: normal; + } + h3 { + text-align: center; + color: white; + font-weight: normal; + padding-bottom: 2rem !important; + } } - .image-holder-app { - img { - max-width: 80%; - - margin: 0 auto; - } +} +.image-holder-app { + img { + max-width: 80%; + + margin: 0 auto; } - .app-row { - background-color: white; +} +.app-row { + background-color: white; +} +.section { + padding: 70px 0; +} +.light-bg { + background-color: white; +} +.darker-bg { + background-color: #f3f3f3; +} +.section-title { + text-align: center; + margin-bottom: 3rem; + h3 { + margin: 0 auto; + text-align: center; + color: #cc1a17; + margin-bottom: 10px; } - .section { - padding: 70px 0; + small { + color: #998a9b; } - .light-bg { - background-color: white; +} +.card-features { + flex: 1; + display: flex; + flex-direction: row; + width: 80%; + margin: 0 auto; + @media screen and (max-width: $mobile) { + width: 90%; + flex-direction: column; } - .darker-bg { - background-color: #f3f3f3; +} +.card-body { + &:hover { + box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); + transform: translateY(-0.25em); + transition: all 0.3s ease; } - .section-title { - text-align: center; - margin-bottom: 3rem; - h3 { - margin: 0 auto; - text-align: center; - color: #cc1a17; - margin-bottom: 10px; - } - small { - color: #998a9b; - } + + padding: 1.25rem; + background-color: white; + width: 23%; + margin: 0 auto; + border-bottom: 2px solid #cc1a17; + + .card-title { + color: #cc1a17; + margin: 10px 0; } - .card-features { - flex: 1; - display: flex; - flex-direction: row; - width: 80%; - margin: 0 auto; - @media screen and (max-width: $mobile) { - width: 90%; - flex-direction: column; - } + .card-text { + font-size: 15px; + text-align: justify; + text-justify: inter-word; } - .card-body { - &:hover { - box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); - transform: translateY(-0.25em); - transition: all 0.3s ease; - } - - padding: 1.25rem; - background-color: white; - width: 23%; - margin: 0 auto; - border-bottom: 2px solid #cc1a17; - - .card-title { - color: #cc1a17; - margin: 10px 0; - } - .card-text { - font-size: 15px; - text-align: justify; - text-justify: inter-word; - } - @media screen and (max-width: $mobile) { - width: 100%; - margin: 10px 0; - } + @media screen and (max-width: $mobile) { + width: 100%; + margin: 10px 0; } - - .login-app { - flex: 1; - display: flex; - flex-direction: row; - - img { - width: 60%; - height: 60%; - } - background-image: url("./imgs/bg_phone.png"); - //border-bottom: 2px solid #cc1a17; - - @media screen and (max-width: $mobile) { - flex-direction: column; - img { - width: 100%; - height: 100%; - } - } +} + +.login-app { + flex: 1; + display: flex; + flex-direction: row; + + img { + width: 60%; + height: 60%; } - .container-login { - // margin-top: 5rem; - width: 40%; - padding: 5%; - @media screen and (max-width: $mobile) { - width: 100%; - } - h1 { - margin: 0 auto; - color: #cc1a17; - } - .text-login { - margin-top: 1rem; - p { - margin: 20px 0px; - color: white; - } - } + .button-default { + padding: 20px; + + //font-family: "Bai Jamjuree", sans-serif; + font-size: 14px; + line-height: 14px; + color: black; + font-weight: 700; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 30px 30px; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + + &:hover { + border-color: #cc1a17; + background-color: #cc1a17; + color: #ffffff; + } } - - .features-app { - width: 100%; - padding: 5% 15%; - - @media screen and (max-width: $mobile) { - padding: 5% 3%; - flex: 1; - display: flex; - flex-direction: column; - } - - background-color: #eeeeee; - h1 { - margin: 0 auto; - text-align: center; - margin-bottom: 70px; - } - .subtitle { - margin: 0 auto; - text-align: center; - color: #cc1a17; - margin-bottom: 10px; - } - - /* Style tab links */ - .tablink { - background-color: #e3e3e3; - - color: #000000; - float: left; - //border-top: 2px solid #cc1a17; - - outline: none; - cursor: pointer; - padding: 30px 20px; - font-size: 17px; - width: 16.665%; - .active { - color: red; - } - @media screen and (max-width: $mobile) { - width: 100%; - padding: 15px 20px; - } - } - - .tablink:hover { - /// background-color: #777; - } - - /* Style the tab content (and add height:100% for full page content) */ - .tabcontent { - color: white; - display: none; - padding: 100px 20px; - padding-bottom: 0px; - height: 100%; - background: white; - - box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); - - @media screen and (max-width: $mobile) { - padding: 20px 20px; - flex: 1; - // display: flex!important; - } - - img { - padding: 40px; - width: 30%; - height: 30%; - @media screen and (max-width: $mobile) { - width: 100%; - height: 100%; - } - } - - .tabDetails { - flex: 1; - display: flex; - flex-direction: row; - @media screen and (max-width: $mobile) { - flex-direction: column; - } - } - .tabText { - h2 { - color: #cc1a17; - padding-top: 20px; - } - h3 { - color: black; - } - p { - padding-top: 20px; - } - } - } + background-image: url("./imgs/bg_phone.png"); + //border-bottom: 2px solid #cc1a17; + + @media screen and (max-width: $mobile) { + flex-direction: column; + img { + width: 100%; + height: 100%; + } } - - .download-app { - flex: 1; - flex-direction: row; - // padding: 20px; - // height: 70vh; - @media screen and (max-width: $mobile) { - flex-direction: column; - padding: 20px 0; +} +.container-login { + // margin-top: 5rem; + width: 40%; + padding: 5%; + @media screen and (max-width: $mobile) { + width: 100%; } - background-image: url("./imgs/bg_phone.png"); - img { - width: 100%; - height: 100%; - } - align-content: center; - align-items: center; - - .left { - width: 100%; - padding: 5rem; - @media screen and (max-width: $mobile) { - padding: 1rem; - - } - } - h1 { - text-align: center; - color: white; - } - h3 { - color: white; - text-align: center; - } - h2 { - color: white; - } - .buttons { - margin-top: 2rem; - flex: 1; - display: flex; - flex-direction: row; - align-content: center; - justify-content: center; - @media screen and (max-width: $mobile) { - flex-direction: column; - - } - } - - .button-app { - border: 1px solid white; - padding: 20px 20px; - margin: 20px; - - border-radius: 3px; - flex: 1; - display: flex; - @media screen and (max-width: $mobile) { - //padding: 20px; - - } - - .button-logo { - color: white; - font-size: 60px; - padding: 0 20px; - } - .button-text { - color: white; - } - color: blue; - /* First we need to help some browsers along for this to work. + h1 { + margin: 0 auto; + color: #cc1a17; + } + .text-login { + margin-top: 1rem; + p { + margin: 20px 0px; + color: white; + } + } +} + +.features-app { + width: 100%; + padding: 5% 15%; + + @media screen and (max-width: $mobile) { + padding: 5% 3%; + flex: 1; + display: flex; + flex-direction: column; + } + + background-color: #eeeeee; + h1 { + margin: 0 auto; + text-align: center; + margin-bottom: 70px; + } + .subtitle { + margin: 0 auto; + text-align: center; + color: #cc1a17; + margin-bottom: 10px; + } + + /* Style tab links */ + .tablink { + background-color: #e3e3e3; + + color: #000000; + float: left; + //border-top: 2px solid #cc1a17; + + outline: none; + cursor: pointer; + padding: 30px 20px; + font-size: 17px; + width: 16.665%; + .active { + color: red; + } + @media screen and (max-width: $mobile) { + width: 100%; + padding: 15px 20px; + } + } + + .tablink:hover { + /// background-color: #777; + } + + /* Style the tab content (and add height:100% for full page content) */ + .tabcontent { + color: white; + display: none; + padding: 100px 20px; + padding-bottom: 0px; + height: 100%; + background: white; + + box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); + + @media screen and (max-width: $mobile) { + padding: 20px 20px; + flex: 1; + // display: flex!important; + } + + img { + padding: 40px; + width: 30%; + height: 30%; + @media screen and (max-width: $mobile) { + width: 100%; + height: 100%; + } + } + + .tabDetails { + flex: 1; + display: flex; + flex-direction: row; + @media screen and (max-width: $mobile) { + flex-direction: column; + } + } + .tabText { + h2 { + color: #cc1a17; + padding-top: 20px; + } + h3 { + color: black; + } + p { + padding-top: 20px; + } + } + } +} + +.download-app { + flex: 1; + flex-direction: row; + // padding: 20px; + // height: 70vh; + @media screen and (max-width: $mobile) { + flex-direction: column; + padding: 20px 0; + } + background-image: url("./imgs/bg_phone.png"); + img { + width: 100%; + height: 100%; + } + align-content: center; + align-items: center; + + .left { + width: 100%; + padding: 5rem; + @media screen and (max-width: $mobile) { + padding: 1rem; + } + } + h1 { + text-align: center; + color: white; + } + h3 { + color: white; + text-align: center; + } + h2 { + color: white; + } + .buttons { + margin-top: 2rem; + flex: 1; + display: flex; + flex-direction: row; + align-content: center; + justify-content: center; + @media screen and (max-width: $mobile) { + flex-direction: column; + } + } + + .button-app { + border: 1px solid white; + padding: 20px 20px; + margin: 20px; + + border-radius: 3px; + flex: 1; + display: flex; + @media screen and (max-width: $mobile) { + //padding: 20px; + } + + .button-logo { + color: white; + font-size: 60px; + padding: 0 20px; + } + .button-text { + color: white; + } + color: blue; + /* First we need to help some browsers along for this to work. Just because a vendor prefix is there, doesn't mean it will work in a browser made by that vendor either, it's just for future-proofing purposes I guess. */ - -o-transition: 0.5s; - -ms-transition: 0.5s; - -moz-transition: 0.5s; - -webkit-transition: 0.5s; - /* ...and now for the proper property */ - transition: 0.5s; - &:hover { - background-color: #cc1a17; - } - } - .button-android { - border: 1px solid white; - padding: 30px 40px; - margin: 20px; - color: white; - border-radius: 3px; - } + -o-transition: 0.5s; + -ms-transition: 0.5s; + -moz-transition: 0.5s; + -webkit-transition: 0.5s; + /* ...and now for the proper property */ + transition: 0.5s; + &:hover { + background-color: #cc1a17; + } } - - .warning-app { - background-color: #eeeeee; - padding: 20px; + .button-android { + border: 1px solid white; + padding: 30px 40px; + margin: 20px; + color: white; + border-radius: 3px; } -.explain-qr{ - flex: 1; - display: flex; - flex-direction: row; - - img { - width: 20%; - height: 20%; - margin: 20px; - } - background-image: url("./imgs/bg_phone.png"); - //border-bottom: 2px solid #cc1a17; - - @media screen and (max-width: $mobile) { - flex-direction: column; - img { - width: 100%; - height: 100%; - } - - } - h3{ - color:white; - margin: 30px; - } } -.ctf-explain{ - background-color: #eeeeee; -} \ No newline at end of file +.warning-app { + background-color: #eeeeee; + padding: 20px; +} +.explain-qr { + flex: 1; + display: flex; + flex-direction: row; + padding: 50px; + justify-content: center; + + + @media screen and (max-width: $mobile) { + padding: 10px; + } + .explain { + margin: 30px; + @media screen and (max-width: $mobile) { + margin: 10px; + } + h3 { + //margin-left: 20px; + margin-bottom: 0; + color: white; + margin: 20px; + } + p { + color: white; + margin-left: 20px; + } + + } + + img { + width: 20%; + height: 20%; + margin: 20px; + align-self: center; + } + background-image: url("./imgs/bg_phone.png"); + //border-bottom: 2px solid #cc1a17; + + @media screen and (max-width: $mobile) { + flex-direction: column; + img { + width: 100%; + height: 100%; + } + } +} + +.ctf-explain { + flex: 1; + display: flex; + flex-direction: row; + background-color: #eeeeee; + padding: 40px; + h3 { + padding: 30px; + padding-bottom: 0px; + } + p { + padding: 30px; + text-align: justify; + text-justify: inter-word; + } + img { + width: 30%; + height: 30%; + } + @media screen and (max-width: $mobile) { + flex-direction: column; + img { + width: 100%; + height: 100%; + } + p { + width: 100%; + padding: 15px; + } + padding: 1px; + } +} +.ctf-levels { + + .level1-ctf { + background-color: #de6d6b; + } + .level2-ctf { + background-color: #d95856; + } + .level3-ctf { + background-color: #d54341; + } + .level4-ctf { + background-color: #d02e2c; + } + .level5-ctf { + background-color: #cc1a17; + } + .level { + @media screen and (max-width: $mobile) { + padding: 30px 10px; + + } + padding: 80px; + h3 { + color: white; + padding-left: 30px; + } + .sub-container { + @media screen and (max-width: $mobile) { + flex-direction: column; + + } + flex: 1; + display: flex; + flex-direction: row; + .sub-level { + width: 100%; + border: 1px dashed white; + margin: 20px; + padding: 20px; + align-content: center; + flex: 1; + display: flex; + flex-direction: column; + justify-content: center; + @media screen and (max-width: $mobile) { + // flex-direction: column; + padding:5; + margin:10px 0; + } + + p { + color: black; + text-align: justify; + text-justify: inter-word; + } + i { + color: #eeeeee; + font-size: 18px; + } + .btn-dwn-ctf { + flex: 1; + display: flex; + flex-direction: row; + color: white; + // border: 1px dashed white; + width: 40%; + margin: 20px; + //padding: 20px; + text-align: center; + margin: 0 auto; + i { + font-size: 30px; + } + &:hover { + // background-color: black; + //color: #cc1a17; + text-decoration: none; + a:hover { + text-decoration: none; + } + } + h3 { + font-size: 20px; + margin: 10px; + align-content: center; + align-self: center; + } + } + } + } + } +} +.ctf-prizes { + padding: 50px; + h3 { + padding: 30px; + padding-bottom: 0px; + } + h5 { + padding-left: 30px; + color: #cc1a17; + } + @media screen and (max-width: $mobile) { + padding: 0; + h3{ + padding: 20px; + text-align: center; + } + h5{ + text-align: center; + padding: 10px; + } + } + .prizes-container { + flex: 1; + display: flex; + flex-direction: row; + padding-top: 30px; + .prize { + flex: 1; + flex-direction: column; + display: flex; + width: 100%; + //background-color: red; + margin: 20px; + align-content: center; + align-items: center; + .prize-logo { + font-size: 100px; + } + } + @media screen and (max-width: $mobile) { + flex-direction: column; + + .prize{ + margin: 0 + } + padding-bottom: 20px; + } + + } +} diff --git a/website/.DS_Store b/website/.DS_Store index 0d0cc552..1b69fbef 100644 Binary files a/website/.DS_Store and b/website/.DS_Store differ diff --git a/website/app.html b/website/app.html index 09c9d920..cffc33c6 100644 --- a/website/app.html +++ b/website/app.html @@ -123,11 +123,12 @@

O login na app é feito usando esse QR code

Para obteres a password, deves efectuar reset através da APP, ou preenchendo o campo a baixo.

-
- - -
+ + + + +
@@ -197,38 +198,38 @@

Aplicação disponível nas típicas lojas de aplicações.

- - + + - + @@ -368,10 +369,65 @@ + + + + + + + + + + + + @@ -98,33 +102,153 @@ -

Estas pontuações refletem o somatório das pontuçãoes dos níveis cumpridos.

+

Estas pontuações refletem o somatório das pontuações dos níveis cumpridos.

-

O CTF - capture the flag é um evento onde os participantes têm como objectivo encontrar as flags escondidas.

-

O nosso CTF não é sobre

+
+

O que é o capture the flag?

+

+ O Capture The Flag é um concurso que vamos realizar diretamente relacionado com o jogo do ENEI, e com os + respetivos prémios espetaculares que temos a oferecer (Nintendo Switch, entre outros). + Este jogo é uma mistura de temas altamente relacionados com Informática, temas como WEB, CRYPTO, + REVERSE_ENGINNERING, e uma mistura de tantos outros. Todos os níveis têm o mesmo objetivo: Encontrar uma + frase (string) que por norma se encontra escondida. + + Qualquer um pode participar no jogo (desde que já detenha um bilhete) apenas com um simples scan a este + QR code. + No fim de encontrares a string, deves gerar um QR code com ela e pronto, o nível está completo! + Basta então fazeres um scan a esse QR e obteres todos os pontos que mereces. + +

+
app
-
+

O que posso ganhar ao realizar estes desafios?

-

+
O CTF vale cerca de 50% dos pontos do jogo do ENEI.
+
+
+ +

Nitendo Switch

+
+
+ +

Coluna Bluetooth Xiaomi

+
+
+ +

Auscultadores AKG K518

+
+
+ +

Power Bank Xiaomi Mi 5000

+
+
+
+ + + +
+

Web

+
+
+

1 - WHATSTHEPASSWORD(31 pontos)

+

Começa esta jornada, com um desafio fácil relacionado com WEB. Talvez desta forma fiques motivado a continuar!

+

Download

+
+
+

2 - ROT13 (37 pontos)

+

De forma a provares melhor o significado deste concurso, deixamos-te um desafio WEB com alguma análise.

+

Download

+
+
+
+
+

Analyse

+
+
+

3 - BURRO (41 pontos)

+

Com este desafio pomos à prova a tua análise de ficheiros e até pode ser que te rias a completar o 3º de muita diversão.

+

Download

+
+
+

4 - WHOAMI (43 pontos)

+

Vamos lá continuar a desenvolver esse raciocínio, mas desta vez com um pouco de pacotes à mistura. É uma confusão!!

+

Download

+
+
+
+ +
+

Reverse Engeneering

+
+
+

5 - REVERSEENGINNERING (47 pontos)

+

Daqui em diante a dificuldade começa a mudar de direção, vais acompanhar? Fica aqui um desafio de reverse_enginnering, nada de muito complicado (para ti).

+

Download

+
+
+

6 -OLD (59 pontos)

+

Prova o cerne destes desafios, explorando, analisando e percebendo como descobrir a flag escondida, o típico desafio crypto.

+

Download

+
+
+ +
+ +
+

Crypto

+
+
+

7 - MASM_IS_LIFE (61 pontos)

+

Deixamos aqui um desafio destruidor de sonhos, é verdade.. Estás pronto para um bocadinho de assembly?

+

Download

+
+
+

8 - OLD2 (89 pontos)

+

Aqui fica a continuação do desafio nº 6, se ainda não o completas-te, não faz sentido continuares este. Se já o fizes-te, então estás pronto para experimentar esta aventura que teve início em 2002 (DosBox).

+

Download

+
+
+
+
+

Engeneering

+
+
+

9 - ZIPZIPZIPZIP (101 pontos)

+

(WARNING) Não aconselhado a pessoas sensíveis, este nível irá exigir de ti algum tempo, raciocínio e conhecimento. Descobre a flag neste desafio propício a dares em louco. (SPOILER ALERT)

+

Download

+
+
+

10 - THE_END (109 pontos)

+

(WARNING) Nem preciso de comentar... Um nível como este não requer descrições. Boa Sorte!

+

Download

+
+
+
+
+
app -
-

No decorrer do concurso sempre que encontrares a Flag, deves criar um QR code com a mesma e efectuar a - leitura utilizando a aplicação do envento.

-

Para começares lê este QR code com a APP

+
+

Como registar progresso no CTF?

+

Depois de obter a flag (string) do nível, deves gerar um QR code com a mesma.

+

Em seguida, deves usar a App para ler este QR code.

+

Caso seja válida, a flag irá dar-te acesso ao cromo que representa o nível.

+

Para testar podes usar este QR code (free points).

+

Boa sorte, a equipa do ENEI'19

+
Perguntas Frequentes
-

Faq

+

Faqs


@@ -132,52 +256,26 @@
  • - O que é o ENEI? + Como posso participar?
    -

    O Encontro Nacional de Estudantes de Informática (ENEI) é um evento que pretende - oferecer aos estudantes de todo o país um evento que promove a aprendizagem, a troca - de - ideias e o convívio, enquanto tenta criar fortes ligações com o mundo empresarial. +

    Tal como o descrito acima, basta efetuares a compra do bilhete e fazeres scan do QR code da página do CTF.

    -

    Esta versão do evento também incluirá os tradicionais momentos de diversão noturnos - que - muito apelam a todos os participantes das antigas edições e são uma excelente via de - networking e transferência de conhecimento!

    +

    Deves então prosseguir à descoberta das frases escondidas em cada desafio, e procederes à geração de um QR code com essa string.

  • - Onde me posso + Quando posso começar? inscrever?
    -

    Podes adquirir o teu bilhete AQUI. -

    +

    O concurso irá iniciar no domingo (dia 7) às 14:30 horas e terminar no sábado (dia 13) às 00:00 horas.

  • - Quando é o programa vai estar disponível? + O que tenho eu a ganhar?
    -

    O programa vai sendo lançado nas próximas semanas de forma iterativa.

    - -
    -
  • -
  • - Quem pode - participar no evento? -
    -

    Podem participar no ENEI’19 todos os estudantes de cursos relacionados com - informática e - todos aqueles que querem aprender mais sobre os temas abordados!

    -
    -
  • -
  • - Tenho - acesso a todas as sessões? -
    -

    Não, as palestras e workshops necessitam de inscrições visto que têm lugares - limitados.

    -

    Brevemente poderás te inscrever na aplicação móvel do ENEI'19!

    +

    Com a realização do concurso não só irás evoluir as tuas competências gerais relacionadas com Informática e Raciocínio Mental, como estás sujeito a ganhar prémios fenomenais.

@@ -186,36 +284,29 @@
- - - -
-
-
-
-

© 2019 ENEI . Todos os direitos reservados

-
-
-
+ @@ -230,4 +321,4 @@ - \ No newline at end of file + diff --git a/website/ctf/.DS_Store b/website/ctf/.DS_Store new file mode 100644 index 00000000..4c75840b Binary files /dev/null and b/website/ctf/.DS_Store differ diff --git a/website/ctf/ASM_IS_LIFE.zip b/website/ctf/ASM_IS_LIFE.zip new file mode 100644 index 00000000..1f493dc5 Binary files /dev/null and b/website/ctf/ASM_IS_LIFE.zip differ diff --git a/website/ctf/Burro.zip b/website/ctf/Burro.zip new file mode 100644 index 00000000..c40dec95 Binary files /dev/null and b/website/ctf/Burro.zip differ diff --git a/website/ctf/OLD.zip b/website/ctf/OLD.zip new file mode 100644 index 00000000..c5a6aaaf Binary files /dev/null and b/website/ctf/OLD.zip differ diff --git a/website/ctf/OLD2.zip b/website/ctf/OLD2.zip new file mode 100644 index 00000000..1538b076 Binary files /dev/null and b/website/ctf/OLD2.zip differ diff --git a/website/ctf/THEEND.zip b/website/ctf/THEEND.zip new file mode 100644 index 00000000..a724f56c Binary files /dev/null and b/website/ctf/THEEND.zip differ diff --git a/website/ctf/Try_Me.zip b/website/ctf/Try_Me.zip new file mode 100644 index 00000000..4242f67f Binary files /dev/null and b/website/ctf/Try_Me.zip differ diff --git a/website/ctf/WHOAMI.zip b/website/ctf/WHOAMI.zip new file mode 100644 index 00000000..2e2c9c97 Binary files /dev/null and b/website/ctf/WHOAMI.zip differ diff --git a/website/ctf/ZIPZIPZIPZIP.zip b/website/ctf/ZIPZIPZIPZIP.zip new file mode 100644 index 00000000..1781e792 Binary files /dev/null and b/website/ctf/ZIPZIPZIPZIP.zip differ diff --git a/website/error-page.html b/website/error-page.html index 9be4cb18..699896ab 100755 --- a/website/error-page.html +++ b/website/error-page.html @@ -38,28 +38,9 @@

404

- - - -
-
-
-

© 2018 ENEI . Todos os direitos reservados

-
-
-
+ + + @@ -67,13 +48,14 @@ - + + + diff --git a/website/imgs/.DS_Store b/website/imgs/.DS_Store index 5684e50e..03c3e3ee 100644 Binary files a/website/imgs/.DS_Store and b/website/imgs/.DS_Store differ diff --git a/website/imgs/caching/.DS_Store b/website/imgs/caching/.DS_Store new file mode 100644 index 00000000..c3a22378 Binary files /dev/null and b/website/imgs/caching/.DS_Store differ diff --git a/website/imgs/caching/aac/AAC.jpg b/website/imgs/caching/aac/AAC.jpg new file mode 100755 index 00000000..a2847a11 Binary files /dev/null and b/website/imgs/caching/aac/AAC.jpg differ diff --git a/website/imgs/caching/aac/Captura de Tela 2019-04-06 às 12.12.07.png b/website/imgs/caching/aac/Captura de Tela 2019-04-06 às 12.12.07.png new file mode 100755 index 00000000..6cc32fc2 Binary files /dev/null and b/website/imgs/caching/aac/Captura de Tela 2019-04-06 às 12.12.07.png differ diff --git a/website/imgs/caching/aac/avatar.jpg b/website/imgs/caching/aac/avatar.jpg new file mode 100755 index 00000000..d37736bd Binary files /dev/null and b/website/imgs/caching/aac/avatar.jpg differ diff --git a/website/imgs/caching/aac/location.jpg b/website/imgs/caching/aac/location.jpg new file mode 100755 index 00000000..ebf3aa3f Binary files /dev/null and b/website/imgs/caching/aac/location.jpg differ diff --git a/website/imgs/caching/aac/transferir.jpg b/website/imgs/caching/aac/transferir.jpg new file mode 100755 index 00000000..681b2b6e Binary files /dev/null and b/website/imgs/caching/aac/transferir.jpg differ diff --git a/website/imgs/caching/arco-torre-almedina/Captura de Tela 2019-04-06 às 12.12.07.png b/website/imgs/caching/arco-torre-almedina/Captura de Tela 2019-04-06 às 12.12.07.png new file mode 100755 index 00000000..6cc32fc2 Binary files /dev/null and b/website/imgs/caching/arco-torre-almedina/Captura de Tela 2019-04-06 às 12.12.07.png differ diff --git a/website/imgs/caching/arco-torre-almedina/arco-torre-almedina.jpg b/website/imgs/caching/arco-torre-almedina/arco-torre-almedina.jpg new file mode 100755 index 00000000..5718d4f7 Binary files /dev/null and b/website/imgs/caching/arco-torre-almedina/arco-torre-almedina.jpg differ diff --git a/website/imgs/caching/arco-torre-almedina/avatar.jpg b/website/imgs/caching/arco-torre-almedina/avatar.jpg new file mode 100755 index 00000000..0ab96c2c Binary files /dev/null and b/website/imgs/caching/arco-torre-almedina/avatar.jpg differ diff --git a/website/imgs/caching/arco-torre-almedina/location.jpg b/website/imgs/caching/arco-torre-almedina/location.jpg new file mode 100755 index 00000000..457589fe Binary files /dev/null and b/website/imgs/caching/arco-torre-almedina/location.jpg differ diff --git a/website/imgs/caching/arco-torre-almedina/torre-de-almedina.jpg b/website/imgs/caching/arco-torre-almedina/torre-de-almedina.jpg new file mode 100755 index 00000000..5b8cd2ee Binary files /dev/null and b/website/imgs/caching/arco-torre-almedina/torre-de-almedina.jpg differ diff --git a/website/imgs/caching/botanico/avatar.jpg b/website/imgs/caching/botanico/avatar.jpg new file mode 100755 index 00000000..f5a5d133 Binary files /dev/null and b/website/imgs/caching/botanico/avatar.jpg differ diff --git a/website/imgs/caching/botanico/botanico.jpg b/website/imgs/caching/botanico/botanico.jpg new file mode 100755 index 00000000..021999f3 Binary files /dev/null and b/website/imgs/caching/botanico/botanico.jpg differ diff --git a/website/imgs/caching/botanico/location.jpg b/website/imgs/caching/botanico/location.jpg new file mode 100755 index 00000000..9a9a7f87 Binary files /dev/null and b/website/imgs/caching/botanico/location.jpg differ diff --git a/website/imgs/caching/monumentais/avatar.jpg b/website/imgs/caching/monumentais/avatar.jpg new file mode 100755 index 00000000..7bc85ec1 Binary files /dev/null and b/website/imgs/caching/monumentais/avatar.jpg differ diff --git a/website/imgs/caching/monumentais/header.jpg b/website/imgs/caching/monumentais/header.jpg new file mode 100755 index 00000000..3b52d9ce Binary files /dev/null and b/website/imgs/caching/monumentais/header.jpg differ diff --git a/website/imgs/caching/monumentais/location.jpg b/website/imgs/caching/monumentais/location.jpg new file mode 100755 index 00000000..356dc49b Binary files /dev/null and b/website/imgs/caching/monumentais/location.jpg differ diff --git a/website/imgs/caching/nova/.DS_Store b/website/imgs/caching/nova/.DS_Store new file mode 100644 index 00000000..ddea5bef Binary files /dev/null and b/website/imgs/caching/nova/.DS_Store differ diff --git a/website/imgs/caching/nova/avatar.jpg b/website/imgs/caching/nova/avatar.jpg new file mode 100755 index 00000000..a5ec1dc4 Binary files /dev/null and b/website/imgs/caching/nova/avatar.jpg differ diff --git a/website/imgs/caching/nova/header.jpg b/website/imgs/caching/nova/header.jpg new file mode 100755 index 00000000..ecc20b96 Binary files /dev/null and b/website/imgs/caching/nova/header.jpg differ diff --git a/website/imgs/caching/nova/location.jpg b/website/imgs/caching/nova/location.jpg new file mode 100755 index 00000000..fd4ec808 Binary files /dev/null and b/website/imgs/caching/nova/location.jpg differ diff --git a/website/imgs/caching/porta/.DS_Store b/website/imgs/caching/porta/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/website/imgs/caching/porta/.DS_Store differ diff --git a/website/imgs/caching/porta/avatar.jpg b/website/imgs/caching/porta/avatar.jpg new file mode 100755 index 00000000..a12ae653 Binary files /dev/null and b/website/imgs/caching/porta/avatar.jpg differ diff --git a/website/imgs/caching/porta/header.jpg b/website/imgs/caching/porta/header.jpg new file mode 100755 index 00000000..82bca891 Binary files /dev/null and b/website/imgs/caching/porta/header.jpg differ diff --git a/website/imgs/caching/porta/location.jpg b/website/imgs/caching/porta/location.jpg new file mode 100755 index 00000000..c8197fba Binary files /dev/null and b/website/imgs/caching/porta/location.jpg differ diff --git a/website/imgs/caching/praca/.DS_Store b/website/imgs/caching/praca/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/website/imgs/caching/praca/.DS_Store differ diff --git a/website/imgs/caching/praca/avatar.jpg b/website/imgs/caching/praca/avatar.jpg new file mode 100755 index 00000000..cd886cf9 Binary files /dev/null and b/website/imgs/caching/praca/avatar.jpg differ diff --git a/website/imgs/caching/praca/header.jpg b/website/imgs/caching/praca/header.jpg new file mode 100755 index 00000000..61440108 Binary files /dev/null and b/website/imgs/caching/praca/header.jpg differ diff --git a/website/imgs/caching/praca/location.jpg b/website/imgs/caching/praca/location.jpg new file mode 100755 index 00000000..c4968888 Binary files /dev/null and b/website/imgs/caching/praca/location.jpg differ diff --git a/website/imgs/caching/quebra_costas/.DS_Store b/website/imgs/caching/quebra_costas/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/website/imgs/caching/quebra_costas/.DS_Store differ diff --git a/website/imgs/caching/quebra_costas/avatar.jpg b/website/imgs/caching/quebra_costas/avatar.jpg new file mode 100755 index 00000000..0c57e479 Binary files /dev/null and b/website/imgs/caching/quebra_costas/avatar.jpg differ diff --git a/website/imgs/caching/quebra_costas/header.jpg b/website/imgs/caching/quebra_costas/header.jpg new file mode 100755 index 00000000..19a6844e Binary files /dev/null and b/website/imgs/caching/quebra_costas/header.jpg differ diff --git a/website/imgs/caching/quebra_costas/location.jpg b/website/imgs/caching/quebra_costas/location.jpg new file mode 100755 index 00000000..6039cce4 Binary files /dev/null and b/website/imgs/caching/quebra_costas/location.jpg differ diff --git a/website/imgs/caching/sereia/.DS_Store b/website/imgs/caching/sereia/.DS_Store new file mode 100644 index 00000000..3b1fcaab Binary files /dev/null and b/website/imgs/caching/sereia/.DS_Store differ diff --git a/website/imgs/caching/sereia/avatar.jpg b/website/imgs/caching/sereia/avatar.jpg new file mode 100755 index 00000000..652982ff Binary files /dev/null and b/website/imgs/caching/sereia/avatar.jpg differ diff --git a/website/imgs/caching/sereia/location.jpg b/website/imgs/caching/sereia/location.jpg new file mode 100755 index 00000000..9de21afd Binary files /dev/null and b/website/imgs/caching/sereia/location.jpg differ diff --git a/website/imgs/caching/sereia/parque-de-santa-cruz.jpg b/website/imgs/caching/sereia/parque-de-santa-cruz.jpg new file mode 100755 index 00000000..46abfaca Binary files /dev/null and b/website/imgs/caching/sereia/parque-de-santa-cruz.jpg differ diff --git a/website/imgs/caching/velha/.DS_Store b/website/imgs/caching/velha/.DS_Store new file mode 100644 index 00000000..b6f11878 Binary files /dev/null and b/website/imgs/caching/velha/.DS_Store differ diff --git a/website/imgs/caching/velha/avatar.jpg b/website/imgs/caching/velha/avatar.jpg new file mode 100755 index 00000000..11c4fe89 Binary files /dev/null and b/website/imgs/caching/velha/avatar.jpg differ diff --git a/website/imgs/caching/velha/header.jpg b/website/imgs/caching/velha/header.jpg new file mode 100755 index 00000000..5d95477b Binary files /dev/null and b/website/imgs/caching/velha/header.jpg differ diff --git a/website/imgs/caching/velha/location.jpg b/website/imgs/caching/velha/location.jpg new file mode 100755 index 00000000..50c20fe2 Binary files /dev/null and b/website/imgs/caching/velha/location.jpg differ diff --git a/website/imgs/flag.png b/website/imgs/flag.png new file mode 100644 index 00000000..a85070b0 Binary files /dev/null and b/website/imgs/flag.png differ diff --git a/website/main.css b/website/main.css index c042c308..7fb41f69 100755 --- a/website/main.css +++ b/website/main.css @@ -171,10 +171,6 @@ content: ""; } -.icon-linkedin1:before { - content: ""; -} - * { margin: 0; padding: 0; @@ -1769,6 +1765,10 @@ footer p { margin-top: 0; } +#calendar-container .event-data h2:first-child { + margin-top: 0; +} + #event-days-list { border-bottom: 1px solid #353535; display: -webkit-box; @@ -2030,7 +2030,7 @@ footer p { #institucional-support .quinta-das-lagrimas { width: auto; - max-width: 120px; + max-width: 88px; } @media (max-width: 769px) { @@ -2077,6 +2077,13 @@ footer p { text-align: center; } +@media screen and (max-width: 769px) { + .ctf-header .ctf-top10 { + width: 95%; + padding-top: 20px; + } +} + .ctf-header .about-top { color: white; font-size: 15px; @@ -2084,6 +2091,12 @@ footer p { margin: 2%; } +@media screen and (max-width: 769px) { + .ctf-header { + width: 100%; + } +} + .container-app { background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #d02e2c), to(#e1494e)); background-image: linear-gradient(0deg, #d02e2c 20%, #e1494e 100%); @@ -2241,6 +2254,25 @@ footer p { height: 60%; } +.login-app .button-default { + padding: 20px; + font-size: 14px; + line-height: 14px; + color: black; + font-weight: 700; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 30px 30px; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; +} + +.login-app .button-default:hover { + border-color: #cc1a17; + background-color: #cc1a17; + color: #ffffff; +} + @media screen and (max-width: 769px) { .login-app { -webkit-box-orient: vertical; @@ -2549,13 +2581,47 @@ footer p { -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; + padding: 50px; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; background-image: url("./imgs/bg_phone.png"); } +@media screen and (max-width: 769px) { + .explain-qr { + padding: 10px; + } +} + +.explain-qr .explain { + margin: 30px; +} + +@media screen and (max-width: 769px) { + .explain-qr .explain { + margin: 10px; + } +} + +.explain-qr .explain h3 { + margin-bottom: 0; + color: white; + margin: 20px; +} + +.explain-qr .explain p { + color: white; + margin-left: 20px; +} + .explain-qr img { width: 20%; height: 20%; margin: 20px; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; } @media screen and (max-width: 769px) { @@ -2571,12 +2637,268 @@ footer p { } } -.explain-qr h3 { - color: white; - margin: 30px; +.ctf-explain { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + background-color: #eeeeee; + padding: 40px; } -.ctf-explain { - background-color: #eeeeee; +.ctf-explain h3 { + padding: 30px; + padding-bottom: 0px; +} + +.ctf-explain p { + padding: 30px; + text-align: justify; + text-justify: inter-word; +} + +.ctf-explain img { + width: 30%; + height: 30%; +} + +@media screen and (max-width: 769px) { + .ctf-explain { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding: 1px; + } + .ctf-explain img { + width: 100%; + height: 100%; + } + .ctf-explain p { + width: 100%; + padding: 15px; + } +} + +.ctf-levels .level1-ctf { + background-color: #de6d6b; +} + +.ctf-levels .level2-ctf { + background-color: #d95856; +} + +.ctf-levels .level3-ctf { + background-color: #d54341; +} + +.ctf-levels .level4-ctf { + background-color: #d02e2c; +} + +.ctf-levels .level5-ctf { + background-color: #cc1a17; +} + +.ctf-levels .level { + padding: 80px; +} + +@media screen and (max-width: 769px) { + .ctf-levels .level { + padding: 30px 10px; + } +} + +.ctf-levels .level h3 { + color: white; + padding-left: 30px; +} + +.ctf-levels .level .sub-container { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; +} + +@media screen and (max-width: 769px) { + .ctf-levels .level .sub-container { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + } +} + +.ctf-levels .level .sub-container .sub-level { + width: 100%; + border: 1px dashed white; + margin: 20px; + padding: 20px; + -ms-flex-line-pack: center; + align-content: center; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} + +@media screen and (max-width: 769px) { + .ctf-levels .level .sub-container .sub-level { + padding: 5; + margin: 10px 0; + } +} + +.ctf-levels .level .sub-container .sub-level p { + color: black; + text-align: justify; + text-justify: inter-word; +} + +.ctf-levels .level .sub-container .sub-level i { + color: #eeeeee; + font-size: 18px; +} + +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + color: white; + width: 40%; + margin: 20px; + text-align: center; + margin: 0 auto; +} + +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf i { + font-size: 30px; +} + +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf:hover { + text-decoration: none; +} + +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf:hover a:hover { + text-decoration: none; +} + +.ctf-levels .level .sub-container .sub-level .btn-dwn-ctf h3 { + font-size: 20px; + margin: 10px; + -ms-flex-line-pack: center; + align-content: center; + -ms-flex-item-align: center; + -ms-grid-row-align: center; + align-self: center; +} + +.ctf-prizes { + padding: 50px; +} + +.ctf-prizes h3 { + padding: 30px; + padding-bottom: 0px; +} + +.ctf-prizes h5 { + padding-left: 30px; + color: #cc1a17; +} + +@media screen and (max-width: 769px) { + .ctf-prizes { + padding: 0; + } + .ctf-prizes h3 { + padding: 20px; + text-align: center; + } + .ctf-prizes h5 { + text-align: center; + padding: 10px; + } +} + +.ctf-prizes .prizes-container { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + padding-top: 30px; +} + +.ctf-prizes .prizes-container .prize { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 100%; + margin: 20px; + -ms-flex-line-pack: center; + align-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} + +.ctf-prizes .prizes-container .prize .prize-logo { + font-size: 100px; +} + +@media screen and (max-width: 769px) { + .ctf-prizes .prizes-container { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-bottom: 20px; + } + .ctf-prizes .prizes-container .prize { + margin: 0; + } } /*# sourceMappingURL=main.css.map */ \ No newline at end of file diff --git a/website/main.css.map b/website/main.css.map index 42899d87..dd8d1148 100755 --- a/website/main.css.map +++ b/website/main.css.map @@ -1,6 +1,6 @@ { "version": 3, - "mappings": "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", + "mappings": "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", "sources": [ "main.scss" ], diff --git a/website/main.scss b/website/main.scss index 34f595a4..2357dc4a 100755 --- a/website/main.scss +++ b/website/main.scss @@ -36,88 +36,88 @@ $bold: 700; }*/ @mixin font($fontFamily, $fontSize, $lineHeight, $colorText) { - font-family: $fontFamily, sans-serif; - font-size: $fontSize; - line-height: $lineHeight; - color: $colorText; + font-family: $fontFamily, sans-serif; + font-size: $fontSize; + line-height: $lineHeight; + color: $colorText; } @mixin position($position, $top, $right, $bottom, $left) { - position: $position; - top: $top; - right: $right; - bottom: $bottom; - left: $left; + position: $position; + top: $top; + right: $right; + bottom: $bottom; + left: $left; } @mixin size($width, $height) { - width: $width; - height: $height; + width: $width; + height: $height; } @mixin mobile { - @media (max-width: #{$mobile}) { - @content; - } + @media (max-width: #{$mobile}) { + @content; + } } @mixin portable { - @media (max-width: #{$portable}) { - @content; - } + @media (max-width: #{$portable}) { + @content; + } } @-webkit-keyframes animateLineLogo { - 15% { - fill: #c7403a; - } - 30% { - fill: #81898e; - } - 45% { - fill: #993d3f; - } - 100% { - fill: #000000; - } + 15% { + fill: #c7403a; + } + 30% { + fill: #81898e; + } + 45% { + fill: #993d3f; + } + 100% { + fill: #000000; + } } @-moz-keyframes animateLineLogo { - 15% { - fill: #c7403a; - } - 30% { - fill: #81898e; - } - 45% { - fill: #993d3f; - } - 100% { - fill: #000000; - } + 15% { + fill: #c7403a; + } + 30% { + fill: #81898e; + } + 45% { + fill: #993d3f; + } + 100% { + fill: #000000; + } } @keyframes animateLineLogo { - 15% { - fill: #c7403a; - } - 30% { - fill: #81898e; - } - 45% { - fill: #993d3f; - } - 100% { - fill: #000000; - } + 15% { + fill: #c7403a; + } + 30% { + fill: #81898e; + } + 45% { + fill: #993d3f; + } + 100% { + fill: #000000; + } } @keyframes animateLettersLogo { - from { - fill: transparent; - } - to { - fill: #ffffff; - } + from { + fill: transparent; + } + to { + fill: #ffffff; + } } //icons @@ -138,31 +138,31 @@ $icon-less: "\e906"; $icon-linkedin1: "\eac9"; @font-face { - font-family: "icomoon"; - src: url("#{$icomoon-font-path}/icomoon.eot?sozc77"); - src: url("#{$icomoon-font-path}/icomoon.eot?sozc77#iefix") format("embedded-opentype"), - url("#{$icomoon-font-path}/icomoon.ttf?sozc77") format("truetype"), - url("#{$icomoon-font-path}/icomoon.woff?sozc77") format("woff"), - url("#{$icomoon-font-path}/icomoon.svg?sozc77#icomoon") format("svg"); - font-weight: normal; - font-style: normal; + font-family: "icomoon"; + src: url("#{$icomoon-font-path}/icomoon.eot?sozc77"); + src: url("#{$icomoon-font-path}/icomoon.eot?sozc77#iefix") format("embedded-opentype"), + url("#{$icomoon-font-path}/icomoon.ttf?sozc77") format("truetype"), + url("#{$icomoon-font-path}/icomoon.woff?sozc77") format("woff"), + url("#{$icomoon-font-path}/icomoon.svg?sozc77#icomoon") format("svg"); + font-weight: normal; + font-style: normal; } [class^="icon-"], [class*=" icon-"] { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: "icomoon" !important; - font-style: normal; - font-weight: normal; - font-variant: normal; - display: inline-block; - text-transform: none; - line-height: 1; - transition: color $standard-animation-time ease; - -webkit-transition: color $standard-animation-time ease; - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: "icomoon" !important; + font-style: normal; + font-weight: normal; + font-variant: normal; + display: inline-block; + text-transform: none; + line-height: 1; + transition: color $standard-animation-time ease; + -webkit-transition: color $standard-animation-time ease; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } .icon-linkedin, @@ -210,196 +210,191 @@ $icon-linkedin1: "\eac9"; } } .icon-company { - &:before { - content: $icon-company; - } + &:before { + content: $icon-company; + } } .icon-clock { - &:before { - content: $icon-clock; - } + &:before { + content: $icon-clock; + } } .icon-location { - &:before { - content: $icon-location; - } + &:before { + content: $icon-location; + } } .icon-email { - &:before { - content: $icon-email; - } + &:before { + content: $icon-email; + } } .icon-instagram { - &:before { - content: $icon-instagram; - } + &:before { + content: $icon-instagram; + } } .icon-facebook { - &:before { - content: $icon-facebook; - } + &:before { + content: $icon-facebook; + } } .icon-linkedin { - &:before { - content: $icon-linkedin; - } + &:before { + content: $icon-linkedin; + } } .icon-menu { - &:before { - content: $icon-menu; - } + &:before { + content: $icon-menu; + } } .icon-plus { - &:before { - content: $icon-plus; - } + &:before { + content: $icon-plus; + } } .icon-less { - &:before { - content: $icon-less; - } -} -.icon-linkedin1 { - &:before { - content: $icon-linkedin1; - } + &:before { + content: $icon-less; + } } * { - margin: 0; - padding: 0; - border: 0; - outline: none; - box-sizing: border-box; + margin: 0; + padding: 0; + border: 0; + outline: none; + box-sizing: border-box; } a { - text-decoration: none; - transition: color $standard-animation-time ease; - -webkit-transition: color $standard-animation-time ease; + text-decoration: none; + transition: color $standard-animation-time ease; + -webkit-transition: color $standard-animation-time ease; } ul, li { - list-style: none; + list-style: none; } body { - width: 100%; - position: relative; - overflow-x: hidden; - font-family: $mont-font, sans-serif; - font-weight: $regular; + width: 100%; + position: relative; + overflow-x: hidden; + font-family: $mont-font, sans-serif; + font-weight: $regular; } button { - &:hover { - cursor: pointer; - } + &:hover { + cursor: pointer; + } } span { - display: block; + display: block; } section, article, aside { - padding: 100px 0; - @include portable { - padding: 55px 0; - } - @include mobile { - padding: 45px 0; - } + padding: 100px 0; + @include portable { + padding: 55px 0; + } + @include mobile { + padding: 45px 0; + } } img { - display: block; - max-width: 100%; - height: auto; + display: block; + max-width: 100%; + height: auto; } h1 { - font-size: 38px; - line-height: 34px; - color: $dark-grey; - font-weight: $bold; - text-transform: uppercase; - margin-bottom: 20px; - @include portable { - font-size: 34px; - margin-bottom: 10px; - } - @include mobile { - font-size: 30px; - } + font-size: 38px; + line-height: 34px; + color: $dark-grey; + font-weight: $bold; + text-transform: uppercase; + margin-bottom: 20px; + @include portable { + font-size: 34px; + margin-bottom: 10px; + } + @include mobile { + font-size: 30px; + } } h2 { - font-size: 28px; - line-height: 30px; - color: $dark-grey; - font-weight: $bold; - text-transform: uppercase; - margin-bottom: 10px; - @include portable { - font-size: 24px; - } - @include mobile { - font-size: 20px; - } + font-size: 28px; + line-height: 30px; + color: $dark-grey; + font-weight: $bold; + text-transform: uppercase; + margin-bottom: 10px; + @include portable { + font-size: 24px; + } + @include mobile { + font-size: 20px; + } } h3 { - font-size: 18px; - line-height: 24px; - font-weight: $bold; - text-transform: uppercase; - margin-bottom: 5px; - color: $dark-grey; + font-size: 18px; + line-height: 24px; + font-weight: $bold; + text-transform: uppercase; + margin-bottom: 5px; + color: $dark-grey; } p { - @include font($mont-font, 20px, 32px, $grey); - @include portable { - font-size: 16px; - line-height: 24px; - } + @include font($mont-font, 20px, 32px, $grey); + @include portable { + font-size: 16px; + line-height: 24px; + } } label { - display: inline-block; - @include font($mont-font, 22px, 22px, $dark-grey); - margin-bottom: 10px; - @include portable { - font-size: 20px; - margin-bottom: 5px; - } + display: inline-block; + @include font($mont-font, 22px, 22px, $dark-grey); + margin-bottom: 10px; + @include portable { + font-size: 20px; + margin-bottom: 5px; + } } input { - @include font($mont-font, 22px, 22px, $dark-grey); - padding: 20px 35px; - border: 1px solid $light-grey; - margin-bottom: 25px; - background-color: $white; - transition: border-color $transition-time ease-out; - -webkit-transition: border-color $transition-time ease-out; - &:hover { - border-color: $red; - } - &.error { - border: 5px solid $red; - } - @include portable { - font-size: 20px; - padding: 15px 25px; - } + @include font($mont-font, 22px, 22px, $dark-grey); + padding: 20px 35px; + border: 1px solid $light-grey; + margin-bottom: 25px; + background-color: $white; + transition: border-color $transition-time ease-out; + -webkit-transition: border-color $transition-time ease-out; + &:hover { + border-color: $red; + } + &.error { + border: 5px solid $red; + } + @include portable { + font-size: 20px; + padding: 15px 25px; + } } input[type="radio"] { - margin-left: 10px; + margin-left: 10px; } input[type="text"], @@ -407,9 +402,9 @@ input[type="email"], input[type="password"], input[type="tel"], input[type="number"] { - &::-webkit-input-placeholder { - color: $dark-grey; - } + &::-webkit-input-placeholder { + color: $dark-grey; + } } input[type="text"], @@ -417,1133 +412,1136 @@ input[type="email"], input[type="password"], input[type="tel"], input[type="number"] { - width: 100%; + width: 100%; } input[type="submit"] { - display: block; - margin-top: 25px; - margin-bottom: 0; - background-color: $red; - border-color: $red; - color: $white; - transition: color $standard-animation-time ease, background-color $standard-animation-time ease; - -webkit-transition: color $standard-animation-time ease, background-color $standard-animation-time ease; - cursor: pointer; - &:hover { - background-color: $white; - color: $red; - } + display: block; + margin-top: 25px; + margin-bottom: 0; + background-color: $red; + border-color: $red; + color: $white; + transition: color $standard-animation-time ease, background-color $standard-animation-time ease; + -webkit-transition: color $standard-animation-time ease, background-color $standard-animation-time ease; + cursor: pointer; + &:hover { + background-color: $white; + color: $red; + } } select { - padding: 10px; - border: 1px solid #eeeeee; - margin-left: 25px; + padding: 10px; + border: 1px solid #eeeeee; + margin-left: 25px; } .vertically-aligned { - display: flex; - align-items: center; - justify-content: center; + display: flex; + align-items: center; + justify-content: center; } .btn { - display: block; + display: block; } .btn-default { - font-family: "Bai Jamjuree", sans-serif; - font-size: 17px; - line-height: 21px; - color: $dark-grey; - display: table; - margin: 0 auto; - background-color: white; - font-weight: 700; - margin-top: 40px; - text-transform: uppercase; - border: 1px solid #eeeeee; - padding: 15px 60px; - transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; - -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; - &:hover { - border-color: $red; - background-color: $red; - color: $white; - } - @include mobile { - display: inline-block; - margin-top: 30px; - } + font-family: "Bai Jamjuree", sans-serif; + font-size: 17px; + line-height: 21px; + color: $dark-grey; + display: table; + margin: 0 auto; + background-color: white; + font-weight: 700; + margin-top: 40px; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 15px 60px; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + &:hover { + border-color: $red; + background-color: $red; + color: $white; + } + @include mobile { + display: inline-block; + margin-top: 30px; + } } hr { - @include size(55%, 1px); - background-color: $light-grey; - margin-bottom: 30px; - position: relative; - @include portable { - margin-bottom: 20px; - } - &::after { - content: " "; - @include size(30%, 1px); - @include position(absolute, 0, null, null, 0); - background-color: $red; - } + @include size(55%, 1px); + background-color: $light-grey; + margin-bottom: 30px; + position: relative; + @include portable { + margin-bottom: 20px; + } + &::after { + content: " "; + @include size(30%, 1px); + @include position(absolute, 0, null, null, 0); + background-color: $red; + } } .grey { - background-color: $light-grey; + background-color: $light-grey; } #error-message { - font-size: 115px; - line-height: 140px; - padding: 0 40px; - background-color: $black; - color: $white; - display: inline-block; - margin-bottom: 0; - @include position(absolute, 50%, null, null, 50%); - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - @include portable { - font-size: 75px; - line-height: 100px; - padding: 0 30px; - } - @include mobile { - font-size: 55px; - line-height: 80px; - padding: 0 25px; - } + font-size: 115px; + line-height: 140px; + padding: 0 40px; + background-color: $black; + color: $white; + display: inline-block; + margin-bottom: 0; + @include position(absolute, 50%, null, null, 50%); + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + @include portable { + font-size: 75px; + line-height: 100px; + padding: 0 30px; + } + @include mobile { + font-size: 55px; + line-height: 80px; + padding: 0 25px; + } } #main-menu { - @include position(fixed, 0, null, null, 0); - text-align: center; - z-index: 5; - width: 100%; - &.changed { - nav { - background-color: rgba(0, 0, 0, 0.8); - @include mobile { - background-color: rgba(0, 0, 0, 0.9); - } - } - } + @include position(fixed, 0, null, null, 0); + text-align: center; + z-index: 5; + width: 100%; + &.changed { + nav { + background-color: rgba(0, 0, 0, 0.8); + @include mobile { + background-color: rgba(0, 0, 0, 0.9); + } + } + } - nav { - display: inline-block; - width: 100%; - max-width: 1140px; - padding: 25px 15px; - background-color: rgba(0, 0, 0, 0.6); - transition: background-color $transition-time ease-out; - -webkit-transition: background-color $transition-time ease-out; - @include portable { - padding: 20px 30px; - } - @include mobile { - padding: 0; - background-color: rgba(0, 0, 0, 0.8); - } - #open-menu-mobile { - display: none; - @include font($mont-font, 18px, 22px, $white); - font-weight: $semi-bold; - letter-spacing: 2px; - text-transform: uppercase; - text-align: left; - padding: 15px 20px; - border-bottom: 1px solid $white; - @include mobile { - display: block; - } - &::after { - content: $icon-menu; - @include font("icomoon", 22px, 20px, $white); - font-weight: $regular; - float: right; - } - } - ul { - @include mobile { - display: none; - margin: 15px 0; - } - li { - display: inline-block; - @include font($mont-font, 19px, 21px, $white); - font-weight: $semi-bold; - margin: 0 20px; - text-transform: uppercase; - @include portable { - font-size: 17px; - line-height: 19px; - margin: 0 10px; - } - @include mobile { - width: 100%; - margin: 10px 0; - } - &.unavailable { - text-decoration: line-through; - } - a { - color: $white; - transition: color $transition-time ease-out; - -webkit-transition: color $transition-time ease-out; - position: relative; - &:hover { - color: $red; - @include mobile { - color: $white; - } - &::after { - width: 100%; - } - } - &::after { - content: " "; - @include position(absolute, null, null, -8px, 0); - @include size(0, 3px); - background-color: $red; - transition: width $transition-time ease-out; - @include portable { - bottom: -6px; - } - @include mobile { - display: none; - } - } - } - } - } - } + nav { + display: inline-block; + width: 100%; + max-width: 1140px; + padding: 25px 15px; + background-color: rgba(0, 0, 0, 0.6); + transition: background-color $transition-time ease-out; + -webkit-transition: background-color $transition-time ease-out; + @include portable { + padding: 20px 30px; + } + @include mobile { + padding: 0; + background-color: rgba(0, 0, 0, 0.8); + } + #open-menu-mobile { + display: none; + @include font($mont-font, 18px, 22px, $white); + font-weight: $semi-bold; + letter-spacing: 2px; + text-transform: uppercase; + text-align: left; + padding: 15px 20px; + border-bottom: 1px solid $white; + @include mobile { + display: block; + } + &::after { + content: $icon-menu; + @include font("icomoon", 22px, 20px, $white); + font-weight: $regular; + float: right; + } + } + ul { + @include mobile { + display: none; + margin: 15px 0; + } + li { + display: inline-block; + @include font($mont-font, 19px, 21px, $white); + font-weight: $semi-bold; + margin: 0 20px; + text-transform: uppercase; + @include portable { + font-size: 17px; + line-height: 19px; + margin: 0 10px; + } + @include mobile { + width: 100%; + margin: 10px 0; + } + &.unavailable { + text-decoration: line-through; + } + a { + color: $white; + transition: color $transition-time ease-out; + -webkit-transition: color $transition-time ease-out; + position: relative; + &:hover { + color: $red; + @include mobile { + color: $white; + } + &::after { + width: 100%; + } + } + &::after { + content: " "; + @include position(absolute, null, null, -8px, 0); + @include size(0, 3px); + background-color: $red; + transition: width $transition-time ease-out; + @include portable { + bottom: -6px; + } + @include mobile { + display: none; + } + } + } + } + } + } } #logo-enei { - width: 221px; - @include position(fixed, calc(50% - 166px), null, null, calc(50% - 110px)); - z-index: 10; - @include portable { - width: 175px; - top: calc(50% - 131px); - left: calc(50% - 87px); - } - @include mobile { - width: 125px; - top: calc(50% - 70px); - left: calc(50% - 62px); - } - #linha { - fill: transparent; - -webkit-animation: animateLineLogo 1s 0.25s forwards; /* Safari & Chrome */ - -moz-animation: animateLineLogo 1s 0.25s forwards; /* Firefox */ - animation: animateLineLogo 1s 0.25s forwards; - } - .letras-logo { - fill: transparent; - animation: animateLettersLogo 0.25s 0.7s forwards ease-in; - } + width: 221px; + @include position(fixed, calc(50% - 166px), null, null, calc(50% - 110px)); + z-index: 10; + @include portable { + width: 175px; + top: calc(50% - 131px); + left: calc(50% - 87px); + } + @include mobile { + width: 125px; + top: calc(50% - 70px); + left: calc(50% - 62px); + } + #linha { + fill: transparent; + -webkit-animation: animateLineLogo 1s 0.25s forwards; /* Safari & Chrome */ + -moz-animation: animateLineLogo 1s 0.25s forwards; /* Firefox */ + animation: animateLineLogo 1s 0.25s forwards; + } + .letras-logo { + fill: transparent; + animation: animateLettersLogo 0.25s 0.7s forwards ease-in; + } } #apresentation { - height: 100vh; - background: url("imgs/coimbra-image.jpg") no-repeat center; - background-size: cover; - background-attachment: fixed; - position: relative; - &.main-landing { - z-index: 10; - } + height: 100vh; + background: url("imgs/coimbra-image.jpg") no-repeat center; + background-size: cover; + background-attachment: fixed; + position: relative; + &.main-landing { + z-index: 10; + } - &.main-landing::after { - content: " "; - @include position(fixed, 0, null, null, 0); - @include size(100%, 100%); - background-color: $white; - opacity: 1; - transition: opacity 150ms ease-out; - } - &.main-landing.animated { - z-index: 0; - &::after { - opacity: 0; - } - #logo-enei { - position: absolute; - } - #linha { - fill: $black; - animation: none; - } - .letras-logo { - fill: $white; - animation: none; - } - } - @include mobile { - height: 60vh; - background-position: bottom right; - background-attachment: inherit; - } + &.main-landing::after { + content: " "; + @include position(fixed, 0, null, null, 0); + @include size(100%, 100%); + background-color: $white; + opacity: 1; + transition: opacity 150ms ease-out; + } + &.main-landing.animated { + z-index: 0; + &::after { + opacity: 0; + } + #logo-enei { + position: absolute; + } + #linha { + fill: $black; + animation: none; + } + .letras-logo { + fill: $white; + animation: none; + } + } + @include mobile { + height: 60vh; + background-position: bottom right; + background-attachment: inherit; + } } #enei { - background-color: $white; - background: url("imgs/cubes-image.png") no-repeat top right; - background-size: 20%; - @include portable { - background-size: 25%; - } - @include mobile { - background-image: none; - } + background-color: $white; + background: url("imgs/cubes-image.png") no-repeat top right; + background-size: 20%; + @include portable { + background-size: 25%; + } + @include mobile { + background-image: none; + } } .pre-h1 { - @include font($mont-font, 20px, 22px, $grey); - font-weight: $semi-bold; - text-transform: uppercase; - margin-bottom: 10px; - @include portable { - font-size: 17px; - } - @include mobile { - margin-bottom: 5px; - } + @include font($mont-font, 20px, 22px, $grey); + font-weight: $semi-bold; + text-transform: uppercase; + margin-bottom: 10px; + @include portable { + font-size: 17px; + } + @include mobile { + margin-bottom: 5px; + } } #countdown { - background-color: $dark-blue; - padding: 80px 0; - text-align: center; - @include portable { - padding: 50px 0; - } - @include mobile { - padding: 40px 0; - } - div { - display: inline-block; - margin: 0 30px; - @include portable { - margin: 0 15px; - } - @include mobile { - margin: 0 5px; - } - span { - @include font($mont-font, 86px, 66px, $white); - font-weight: $bold; - display: block; - margin-bottom: 20px; - @include portable { - font-size: 66px; - margin-bottom: 5px; - } - @include mobile { - font-size: 50px; - line-height: 55px; - margin-bottom: 0; - } - } - .smalltext { - @include font($mont-font, 25px, 25px, $red); - font-weight: $bold; - display: block; - @include portable { - font-size: 22px; - } - @include mobile { - font-size: 16px; - } - } - } + background-color: $dark-blue; + padding: 80px 0; + text-align: center; + @include portable { + padding: 50px 0; + } + @include mobile { + padding: 40px 0; + } + div { + display: inline-block; + margin: 0 30px; + @include portable { + margin: 0 15px; + } + @include mobile { + margin: 0 5px; + } + span { + @include font($mont-font, 86px, 66px, $white); + font-weight: $bold; + display: block; + margin-bottom: 20px; + @include portable { + font-size: 66px; + margin-bottom: 5px; + } + @include mobile { + font-size: 50px; + line-height: 55px; + margin-bottom: 0; + } + } + .smalltext { + @include font($mont-font, 25px, 25px, $red); + font-weight: $bold; + display: block; + @include portable { + font-size: 22px; + } + @include mobile { + font-size: 16px; + } + } + } } #available-soon { - text-align: center; - h1 { - margin-bottom: 40px; - line-height: 50px; - @include mobile { - font-size: 25px; - line-height: 35px; - margin-bottom: 30px; - } - } - #wave { - .dot { - display: inline-block; - @include size(25px, 25px); - border-radius: 50%; - margin: 0 5px; - animation: wave 1.3s ease-out infinite; - @include mobile { - @include size(20px, 20px); - margin: 0 2px; - } - &:nth-child(1) { - background-color: #858683; - } - &:nth-child(2) { - background-color: #e82d28; - animation-delay: -1.1s; - } - &:nth-child(3) { - background-color: #5f2021; - animation-delay: -0.9s; - } - } - } + text-align: center; + h1 { + margin-bottom: 40px; + line-height: 50px; + @include mobile { + font-size: 25px; + line-height: 35px; + margin-bottom: 30px; + } + } + #wave { + .dot { + display: inline-block; + @include size(25px, 25px); + border-radius: 50%; + margin: 0 5px; + animation: wave 1.3s ease-out infinite; + @include mobile { + @include size(20px, 20px); + margin: 0 2px; + } + &:nth-child(1) { + background-color: #858683; + } + &:nth-child(2) { + background-color: #e82d28; + animation-delay: -1.1s; + } + &:nth-child(3) { + background-color: #5f2021; + animation-delay: -0.9s; + } + } + } - @keyframes wave { - 0%, - 100% { - transform: initial scale(1); - } + @keyframes wave { + 0%, + 100% { + transform: initial scale(1); + } - 50% { - transform: translateY(-10px) scale(1.2); - } - } + 50% { + transform: translateY(-10px) scale(1.2); + } + } } #programa { - background-color: $dark-blue; - text-align: center; - h1, - .pre-h1 { - color: $light-grey; - } - hr { - display: table; - margin: 0 auto; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } + background-color: $dark-blue; + text-align: center; + h1, + .pre-h1 { + color: $light-grey; + } + hr { + display: table; + margin: 0 auto; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } } #precos { - text-align: center; - position: relative; - /*@include portable { + text-align: center; + position: relative; + /*@include portable { padding-bottom: 100px; }*/ - hr { - display: table; - margin: 0 auto 60px; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } - .price-block { - display: inline-flex; - flex-direction: column; - justify-content: space-between; - width: 100%; - min-height: 460px; - max-width: 260px; - border: 1px solid $light-grey; - padding: 0 30px 40px; - margin: 0 15px; - transition: transform $transition-time ease-out; - -webkit-transition: transform $transition-time ease-out; - @include portable { - max-width: 210px; - padding: 0 15px 40px; - margin: 0 10px; - } - @include mobile { - max-width: 350px; - min-height: inherit; - padding: 0 15px 40px; - margin: 0 auto 35px; - display: table; - } - &:hover { - transform: scale(1.05); - -webkit-transform: scale(1.05); - } - hr { - margin-bottom: 10px; - margin-top: 25px; - width: 100%; - border: 1px solid $light-grey; - border-style: dashed; - background-color: transparent; - &::after { - display: none; - } - } - .price { - @include font($mont-font, 58px, 58px, $dark-grey); - font-weight: $semi-bold; - @include mobile { - margin: 20px 0; - } - span { - font-size: 30px; - vertical-align: super; - margin-right: 5px; - } - &.exception { - &::after { - content: "*/**"; - font-size: 13px; - vertical-align: top; - } - } - } - .label { - @include font($mont-font, 22px, 22px, $grey); - font-weight: $semi-bold; - margin-top: 10px; - } - .type { - width: 100%; - padding: 20px 0; - background-color: $red; - text-align: center; - @include font($mont-font, 18px, 18px, $white); - font-weight: $bold; - text-transform: uppercase; - margin-top: -1px; - } - .buy-button { - @include font($mont-font, 14px, 14px, $grey); - font-weight: $bold; - text-transform: uppercase; - border: 1px solid $light-grey; - padding: 10px 30px; - transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - &:hover { - border-color: $red; - background-color: $red; - color: $white; - } - @include mobile { - display: inline-block; - margin-top: 30px; - } - } - .options { - font-family: "Bai Jamjuree", sans-serif; - font-size: 16px; - line-height: 23px; - color: #777777; - font-weight: 400; - margin-top: 20px; - display: inline-block; - } - &.disable { - &:hover { - transform: scale(1); - -webkit-transform: scale(1); - } - .buy-button { - &:hover { - border-color: $light-grey; - background-color: transparent; - color: $grey; - } - } - } - } - .ps { - @include position(absolute, null, 20px, 20px, null); - text-align: right; - p { - font-size: 13px; - color: $dark-grey; - text-transform: uppercase; - } - } + hr { + display: table; + margin: 0 auto 60px; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } + .price-block { + display: inline-flex; + flex-direction: column; + justify-content: space-between; + width: 100%; + min-height: 460px; + max-width: 260px; + border: 1px solid $light-grey; + padding: 0 30px 40px; + margin: 0 15px; + transition: transform $transition-time ease-out; + -webkit-transition: transform $transition-time ease-out; + @include portable { + max-width: 210px; + padding: 0 15px 40px; + margin: 0 10px; + } + @include mobile { + max-width: 350px; + min-height: inherit; + padding: 0 15px 40px; + margin: 0 auto 35px; + display: table; + } + &:hover { + transform: scale(1.05); + -webkit-transform: scale(1.05); + } + hr { + margin-bottom: 10px; + margin-top: 25px; + width: 100%; + border: 1px solid $light-grey; + border-style: dashed; + background-color: transparent; + &::after { + display: none; + } + } + .price { + @include font($mont-font, 58px, 58px, $dark-grey); + font-weight: $semi-bold; + @include mobile { + margin: 20px 0; + } + span { + font-size: 30px; + vertical-align: super; + margin-right: 5px; + } + &.exception { + &::after { + content: "*/**"; + font-size: 13px; + vertical-align: top; + } + } + } + .label { + @include font($mont-font, 22px, 22px, $grey); + font-weight: $semi-bold; + margin-top: 10px; + } + .type { + width: 100%; + padding: 20px 0; + background-color: $red; + text-align: center; + @include font($mont-font, 18px, 18px, $white); + font-weight: $bold; + text-transform: uppercase; + margin-top: -1px; + } + .buy-button { + @include font($mont-font, 14px, 14px, $grey); + font-weight: $bold; + text-transform: uppercase; + border: 1px solid $light-grey; + padding: 10px 30px; + transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + &:hover { + border-color: $red; + background-color: $red; + color: $white; + } + @include mobile { + display: inline-block; + margin-top: 30px; + } + } + .options { + font-family: "Bai Jamjuree", sans-serif; + font-size: 16px; + line-height: 23px; + color: #777777; + font-weight: 400; + margin-top: 20px; + display: inline-block; + } + &.disable { + &:hover { + transform: scale(1); + -webkit-transform: scale(1); + } + .buy-button { + &:hover { + border-color: $light-grey; + background-color: transparent; + color: $grey; + } + } + } + } + .ps { + @include position(absolute, null, 20px, 20px, null); + text-align: right; + p { + font-size: 13px; + color: $dark-grey; + text-transform: uppercase; + } + } } #app { - background-color: $light-grey; - text-align: center; - padding-bottom: 0; - h1 { - color: $black; - margin-bottom: 70px; - } + background-color: $light-grey; + text-align: center; + padding-bottom: 0; + h1 { + color: $black; + margin-bottom: 70px; + } } #ctf { - background-image: url("imgs/image.png"); - text-align: center; + background-image: url("imgs/image.png"); + text-align: center; - h1 { - color: white; - margin-top: 80px; - margin-bottom: 50px; - } - .button-ctf { - &:hover { - border-color: #cc1a17; - background-color: white; - color: $grey; - } - } + h1 { + color: white; + margin-top: 80px; + margin-bottom: 50px; + } + .button-ctf { + &:hover { + border-color: #cc1a17; + background-color: white; + color: $grey; + } + } } .prectf-h1 { - @include font($mont-font, 20px, 22px, $grey); - font-weight: $semi-bold; - text-transform: uppercase; - margin-bottom: 100px; - @include portable { - font-size: 17px; - } - @include mobile { - margin-bottom: 5px; - } - color: #cc1a17; + @include font($mont-font, 20px, 22px, $grey); + font-weight: $semi-bold; + text-transform: uppercase; + margin-bottom: 100px; + @include portable { + font-size: 17px; + } + @include mobile { + margin-bottom: 5px; + } + color: #cc1a17; } .button-ctf { - font-family: "Bai Jamjuree", sans-serif; - font-size: 18px; - line-height: 14px; - color: #cc1a17; - font-weight: 700; - text-transform: uppercase; - border: 1px solid #eeeeee; - padding: 20px 40px; - margin: 200; - transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; - -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + font-family: "Bai Jamjuree", sans-serif; + font-size: 18px; + line-height: 14px; + color: #cc1a17; + font-weight: 700; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 20px 40px; + margin: 200; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; } #faqs, #tickets { - background: url("imgs/cubes2-image.png") no-repeat bottom right; - background-size: 30%; + background: url("imgs/cubes2-image.png") no-repeat bottom right; + background-size: 30%; } #faqs { - p { - a { - color: $dark-grey; - font-weight: $bold; - &:hover { - color: $red; - } - } - } + p { + a { + color: $dark-grey; + font-weight: $bold; + &:hover { + color: $red; + } + } + } } #accordion { - li { - margin-bottom: 15px; - &:last-child { - margin-bottom: 0; - } - &.open, - &:hover { - .toggle { - background-color: $red; - border-color: $red; - color: $white; - } - } - .toggle { - @include font($mont-font, 22px, 22px, $dark-grey); - text-transform: uppercase; - display: block; - padding: 20px 35px; - border: 1px solid $light-grey; - background-color: $white; - transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, - color $transition-time ease-out; - @include mobile { - font-size: 19px; - line-height: 24px; - padding: 20px; - } - } - .content-accordion { - display: none; - padding: 45px 35px; - background-color: $white; - border: 1px dashed $light-grey; - border-top: 0; - @include mobile { - padding: 25px; - } - p { - margin-bottom: 5px; - } - } - } + li { + margin-bottom: 15px; + &:last-child { + margin-bottom: 0; + } + &.open, + &:hover { + .toggle { + background-color: $red; + border-color: $red; + color: $white; + } + } + .toggle { + @include font($mont-font, 22px, 22px, $dark-grey); + text-transform: uppercase; + display: block; + padding: 20px 35px; + border: 1px solid $light-grey; + background-color: $white; + transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + -webkit-transition: border-color $transition-time ease-out, background-color $transition-time ease-out, + color $transition-time ease-out; + @include mobile { + font-size: 19px; + line-height: 24px; + padding: 20px; + } + } + .content-accordion { + display: none; + padding: 45px 35px; + background-color: $white; + border: 1px dashed $light-grey; + border-top: 0; + @include mobile { + padding: 25px; + } + p { + margin-bottom: 5px; + } + } + } } #sponsors { - text-align: center; - hr { - display: table; - margin: 0 auto; - background-color: $dark-grey; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } - .vertically-aligned { - @include portable { - flex-wrap: wrap; - } - } - .sponsor-image { - display: inline-block; - margin: 40px 20px 0; - max-width: 200px; - filter: grayscale(0.2); - transform: scale(1); - transition: all $transition-time ease-in-out; - &:hover { - filter: grayscale(0); - transform: scale(1.03); - } - @include mobile { - max-width: 160px; - margin: 40px 15px 0; - } - } - .gold, - .silver, - .bronze { - h1 { - font-size: 30px; - line-height: 26px; - margin-top: 75px; - @include portable { - font-size: 27px; - } - @include mobile { - font-size: 23px; - } - } - } - .gold { - .sponsor-image { - max-width: 135px; - @include portable { - max-width: 110px; - } - } - } - .silver { - .sponsor-image { - max-width: 165px; - } - } - .bronze { - .sponsor-image { - max-width: 115px; - img { - max-height: 90px; - } - } - } + text-align: center; + hr { + display: table; + margin: 0 auto; + background-color: $dark-grey; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } + .vertically-aligned { + @include portable { + flex-wrap: wrap; + } + } + .sponsor-image { + display: inline-block; + margin: 40px 20px 0; + max-width: 200px; + filter: grayscale(0.2); + transform: scale(1); + transition: all $transition-time ease-in-out; + &:hover { + filter: grayscale(0); + transform: scale(1.03); + } + @include mobile { + max-width: 160px; + margin: 40px 15px 0; + } + } + .gold, + .silver, + .bronze { + h1 { + font-size: 30px; + line-height: 26px; + margin-top: 75px; + @include portable { + font-size: 27px; + } + @include mobile { + font-size: 23px; + } + } + } + .gold { + .sponsor-image { + max-width: 135px; + @include portable { + max-width: 110px; + } + } + } + .silver { + .sponsor-image { + max-width: 165px; + } + } + .bronze { + .sponsor-image { + max-width: 115px; + img { + max-height: 90px; + } + } + } } #social-network { - display: flex; - justify-content: flex-end; - li { - margin-left: 20px; - @include portable { - margin-left: 10px; - } - a { - transition: color $transition-time ease-out; - -webkit-transition: color $transition-time ease-out; - &:hover { - color: $red; - } - } - } + display: flex; + justify-content: flex-end; + li { + margin-left: 20px; + @include portable { + margin-left: 10px; + } + a { + transition: color $transition-time ease-out; + -webkit-transition: color $transition-time ease-out; + &:hover { + color: $red; + } + } + } } footer { - padding: 25px 0; - background-color: $black; - border-top: 1px solid $white; - @include portable { - padding: 20px 0; - } - p { - color: $white; - font-size: 13px; - line-height: 15px; - margin-top: 10px; - @include portable { - font-size: 12px; - } - @include mobile { - margin-top: 0; - } - } + padding: 25px 0; + background-color: $black; + border-top: 1px solid $white; + @include portable { + padding: 20px 0; + } + p { + color: $white; + font-size: 13px; + line-height: 15px; + margin-top: 10px; + @include portable { + font-size: 12px; + } + @include mobile { + margin-top: 0; + } + } } #tab-links { - margin: 50px 0 25px; - display: flex; - .tab-label { - display: none; - &.visible { - display: inline-flex; - } - &.active { - a { - border-color: $red; - background-color: $red; - color: $white; - z-index: 2; - } - } - a { - border: 1px solid $dark-grey; - display: inline-block; - @include font($mont-font, 20px, 22px, $dark-grey); - padding: 20px 15px; - -webkit-transition: border-color $transition-time ease, color $transition-time ease, - background-color $transition-time ease; - transition: border-color $transition-time ease, color $transition-time ease, - background-color $transition-time ease; - margin-right: -1px; - @include portable { - padding: 15px; - } - } - } + margin: 50px 0 25px; + display: flex; + .tab-label { + display: none; + &.visible { + display: inline-flex; + } + &.active { + a { + border-color: $red; + background-color: $red; + color: $white; + z-index: 2; + } + } + a { + border: 1px solid $dark-grey; + display: inline-block; + @include font($mont-font, 20px, 22px, $dark-grey); + padding: 20px 15px; + -webkit-transition: border-color $transition-time ease, color $transition-time ease, + background-color $transition-time ease; + transition: border-color $transition-time ease, color $transition-time ease, + background-color $transition-time ease; + margin-right: -1px; + @include portable { + padding: 15px; + } + } + } } #tab-container { - .tab { - display: none; - &.visible { - display: block; - } - } + .tab { + display: none; + &.visible { + display: block; + } + } } #career-path { - text-align: center; - hr { - display: table; - margin: 0 auto 60px; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } - h2 { - color: $white; - font-size: 18px; - line-height: 22px; - margin-bottom: 10px; - } - .powered-by { - @include font($mont-font, 16px, 20px, $white); - margin-bottom: 15px; - } - .separator { - display: block; - margin: 0 auto; - @include size(40%, 1px); - background-color: $white; - margin-bottom: 10px; - } - .career-path-links { - position: relative; - padding: 20px; - display: inline-block; - &::after { - content: ""; - @include size(calc(100% + 8px), calc(100% + 8px)); - @include position(absolute, -5px, null, null, -5px); - border: 1px solid red; - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - left: -5px; - left: -5px; - transition: transform $transition-time ease-in-out, border-width $transition-time ease-in-out, - top $transition-time ease-in-out, border-width $transition-time ease-in-out; - } - &:hover:after { - -webkit-transform: skewX(0); - transform: skewX(0); - border-width: 2px; - top: -6px; - left: -6px; - } + text-align: center; + hr { + display: table; + margin: 0 auto 60px; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } + h2 { + color: $white; + font-size: 18px; + line-height: 22px; + margin-bottom: 10px; + } + .powered-by { + @include font($mont-font, 16px, 20px, $white); + margin-bottom: 15px; + } + .separator { + display: block; + margin: 0 auto; + @include size(40%, 1px); + background-color: $white; + margin-bottom: 10px; + } + .career-path-links { + position: relative; + padding: 20px; + display: inline-block; + &::after { + content: ""; + @include size(calc(100% + 8px), calc(100% + 8px)); + @include position(absolute, -5px, null, null, -5px); + border: 1px solid red; + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + left: -5px; + left: -5px; + transition: transform $transition-time ease-in-out, border-width $transition-time ease-in-out, + top $transition-time ease-in-out, border-width $transition-time ease-in-out; + } + &:hover:after { + -webkit-transform: skewX(0); + transform: skewX(0); + border-width: 2px; + top: -6px; + left: -6px; + } - img { - -webkit-filter: invert(100%); - filter: invert(100%); - max-width: 70%; - margin: 0 auto; - } - } - .ai { - .career-path-links { - background-color: $ai-color; - &::after { - border-color: $ai-color; - } - } - } - .web { - .career-path-links { - background-color: $web-color; - &::after { - border-color: $web-color; - } - } - } + img { + -webkit-filter: invert(100%); + filter: invert(100%); + max-width: 70%; + margin: 0 auto; + } + } + .ai { + .career-path-links { + background-color: $ai-color; + &::after { + border-color: $ai-color; + } + } + } + .web { + .career-path-links { + background-color: $web-color; + &::after { + border-color: $web-color; + } + } + } } #speakers { - text-align: center; - hr { - display: table; - margin: 0 auto 60px; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } + text-align: center; + hr { + display: table; + margin: 0 auto 60px; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } } #calendar { - h1 { - text-align: center; - } - hr { - display: table; - margin: 0 auto 60px; - background-color: #353535; - &::after { - left: 50%; - transform: translateX(-50%); - -webkit-transform: translateX(-50%); - } - } + h1 { + text-align: center; + } + hr { + display: table; + margin: 0 auto 60px; + background-color: #353535; + &::after { + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); + } + } } .career-apresentation { - z-index: 1; - @include position(absolute, 50%, null, null, 50%); - transform: translate(-50%, -50%); - .career-name { - font-size: 46px; - font-weight: $bold; - color: $white; - text-transform: uppercase; - text-align: center; - span { - font-size: 22px; - text-transform: none; - } - } - img { - -webkit-filter: invert(100%); - filter: invert(100%); - max-width: 250px; - margin: 35px auto 0; - } + z-index: 1; + @include position(absolute, 50%, null, null, 50%); + transform: translate(-50%, -50%); + .career-name { + font-size: 46px; + font-weight: $bold; + color: $white; + text-transform: uppercase; + text-align: center; + span { + font-size: 22px; + text-transform: none; + } + } + img { + -webkit-filter: invert(100%); + filter: invert(100%); + max-width: 250px; + margin: 35px auto 0; + } } .career-path { - #apresentation { - &::after { - content: " "; - @include position(absolute, 0, null, null, 0); - @include size(100%, 100%); - opacity: 0.5; - } - } + #apresentation { + &::after { + content: " "; + @include position(absolute, 0, null, null, 0); + @include size(100%, 100%); + opacity: 0.5; + } + } } .speaker-button { - display: block; - margin-bottom: 50px; - position: relative; + display: block; + margin-bottom: 50px; + position: relative; - &:hover { - .speaker-image::before { - border-color: $ai-color; - } - .speaker-image::after { - opacity: 0.85; - } - .company-image { - opacity: 1; - width: 85%; - } - } + &:hover { + .speaker-image::before { + border-color: $ai-color; + } + .speaker-image::after { + opacity: 0.85; + } + .company-image { + opacity: 1; + width: 85%; + } + } - .speaker-image { - @include size(200px, 200px); - display: table; - margin: 0 auto 20px; - position: relative; - &::before { - content: ""; - @include size(calc(100% + 8px), calc(100% + 8px)); - @include position(absolute, -6px, null, null, -6px); - border: 2px solid $dark-grey; - transition: border-color $transition-time ease-in-out; - } - &::after { - content: " "; - @include position(absolute, 0, null, null, 0); - @include size(100%, 100%); - background-color: $white; - transition: opacity $transition-time ease-in-out; - opacity: 0; - } - } - .company-image { - @include position(absolute, 50%, null, null, 50%); - transform: translate(-50%, -50%); - width: 82%; - z-index: 1; - transition: opacity $transition-time ease-in-out, width $transition-time ease-in-out; - opacity: 0; - } - .speaker-name { - font-weight: $bold; - font-size: 22px; - line-height: 26px; - color: $dark-grey; - margin-bottom: 5px; - } - .speaker-company { - font-weight: $semi-bold; - font-size: 16px; - line-height: 20px; - color: $grey; - } + .speaker-image { + @include size(200px, 200px); + display: table; + margin: 0 auto 20px; + position: relative; + &::before { + content: ""; + @include size(calc(100% + 8px), calc(100% + 8px)); + @include position(absolute, -6px, null, null, -6px); + border: 2px solid $dark-grey; + transition: border-color $transition-time ease-in-out; + } + &::after { + content: " "; + @include position(absolute, 0, null, null, 0); + @include size(100%, 100%); + background-color: $white; + transition: opacity $transition-time ease-in-out; + opacity: 0; + } + } + .company-image { + @include position(absolute, 50%, null, null, 50%); + transform: translate(-50%, -50%); + width: 82%; + z-index: 1; + transition: opacity $transition-time ease-in-out, width $transition-time ease-in-out; + opacity: 0; + } + .speaker-name { + font-weight: $bold; + font-size: 22px; + line-height: 26px; + color: $dark-grey; + margin-bottom: 5px; + } + .speaker-company { + font-weight: $semi-bold; + font-size: 16px; + line-height: 20px; + color: $grey; + } } /* CAREER PATH COLORS */ .ai-color { - #main-menu nav ul li a:hover, - #event-days-list button.selected, - #event-days-list button:hover, - #content-container h2, - #social-network ul li a:hover, - #content-container .event-description:hover { - color: $ai-color; - } - #main-menu nav ul li a::after, - #apresentation::after, - hr::after, - #calendar-container .event-details::before { - background-color: $ai-color; - } + #main-menu nav ul li a:hover, + #event-days-list button.selected, + #event-days-list button:hover, + #content-container h2, + #social-network ul li a:hover, + #content-container .event-description:hover { + color: $ai-color; + } + #main-menu nav ul li a::after, + #apresentation::after, + hr::after, + #calendar-container .event-details::before { + background-color: $ai-color; + } } #calendar-container { - .event-details { - &::before { - content: " "; - @include position(absolute, 5px, null, null, 0px); - @include size(1px, 100%); - background-color: $red; - } - } - .event-data { - margin-top: 50px; - &:first-child { - margin-top: 0; - } - } + .event-details { + &::before { + content: " "; + @include position(absolute, 5px, null, null, 0px); + @include size(1px, 100%); + background-color: $red; + } + } + .event-data { + margin-top: 50px; + &:first-child { + margin-top: 0; + } + h2:first-child { + margin-top: 0; + } + } } #event-days-list { - border-bottom: 1px solid $dark-grey; - display: flex; - button { - width: 25%; - padding: 20px 0; - background-color: transparent; - color: $dark-grey; - font-size: 32px; - font-weight: 700; - transition: color $transition-time ease, transform $transition-time ease; - &:last-child { - border-right: 0; - } - &.selected { - color: $red; - &:hover { - cursor: default; - transform: scale(1); - } - } - &:hover { - color: $red; - transform: scale(1.02); - } - span { - display: block; - font-weight: 500; - font-size: 20px; - } - } + border-bottom: 1px solid $dark-grey; + display: flex; + button { + width: 25%; + padding: 20px 0; + background-color: transparent; + color: $dark-grey; + font-size: 32px; + font-weight: 700; + transition: color $transition-time ease, transform $transition-time ease; + &:last-child { + border-right: 0; + } + &.selected { + color: $red; + &:hover { + cursor: default; + transform: scale(1); + } + } + &:hover { + color: $red; + transform: scale(1.02); + } + span { + display: block; + font-weight: 500; + font-size: 20px; + } + } } .day-night-filter { - border-bottom: 1px solid $dark-grey; - button { - width: 50%; - padding: 30px 0; - border-right: 1px solid $dark-grey; + border-bottom: 1px solid $dark-grey; + button { + width: 50%; + padding: 30px 0; + border-right: 1px solid $dark-grey; - &:last-child { - border-right: 0; - } - } - .half-day { - text-align: center; - padding: 20px 0; - color: $dark-grey; - font-size: 27px; - font-weight: 700; - text-transform: uppercase; - } + &:last-child { + border-right: 0; + } + } + .half-day { + text-align: center; + padding: 20px 0; + color: $dark-grey; + font-size: 27px; + font-weight: 700; + text-transform: uppercase; + } } #content-container { - padding: 30px 30px 0; - color: $dark-grey; - .content { - display: none; - &.visible { - display: block; - } - } + padding: 30px 30px 0; + color: $dark-grey; + .content { + display: none; + &.visible { + display: block; + } + } .event-description { font-family: $mont-font; @@ -1619,470 +1617,691 @@ footer { } #institucional-support { - padding: 60px 0; - h3 { - margin-bottom: 25px; - } - a { - display: inline-block; - margin: 0 20px; - @include portable { - margin: 10px; - max-width: 70px; - } + padding: 60px 0; + h3 { + margin-bottom: 25px; + } + a { + display: inline-block; + margin: 0 20px; + @include portable { + margin: 10px; + max-width: 70px; + } - &:first-child { - margin-left: 0; - } - } - .vertically-aligned { - justify-content: flex-start; - @include portable { - flex-wrap: wrap; - } - @include mobile { - justify-content: flex-start; - } - } - .junisec { - max-width: 90px; - @include mobile { - max-width: 70px; - } - } - .isec { - max-width: 150px; - @include mobile { - max-width: 120px; - } - } - .isec2 { - max-width: 150px; - @include mobile { - max-width: 120px; - } - } - .iscac { - max-width: 115px; - @include mobile { - max-width: 90px; - } - } - .fca { - max-width: 70px; - @include mobile { - max-width: 50px; - } - } - .quinta-das-lagrimas { - width: auto; - max-width: 120px; - @include mobile { - max-width: 90px; - } - } + &:first-child { + margin-left: 0; + } + } + .vertically-aligned { + justify-content: flex-start; + @include portable { + flex-wrap: wrap; + } + @include mobile { + justify-content: flex-start; + } + } + .junisec { + max-width: 90px; + @include mobile { + max-width: 70px; + } + } + .isec { + max-width: 150px; + @include mobile { + max-width: 120px; + } + } + .isec2 { + max-width: 150px; + @include mobile { + max-width: 120px; + } + } + .iscac { + max-width: 115px; + @include mobile { + max-width: 90px; + } + } + .fca { + max-width: 70px; + @include mobile { + max-width: 50px; + } + } + .quinta-das-lagrimas { + width: auto; + max-width: 88px; + @include mobile { + max-width: 90px; + } + } } .ctf-header { - background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); - flex: 1; - display: flex; - flex-direction: column; - padding-top: 10%; + background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); + flex: 1; + display: flex; + flex-direction: column; + padding-top: 10%; - .ctf-top10 { - width: 40%; - margin: 0 auto; + .ctf-top10 { + width: 40%; + margin: 0 auto; - padding: 0; - .top-title { - color: white; - text-align: center; - margin: 5%; - } - box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); - th { - text-align: center; - } - td { - text-align: center; - } - } - .about-top { - color: white; - font-size: 15px; - text-align: center; - margin: 2%; - } + padding: 0; + .top-title { + color: white; + text-align: center; + margin: 5%; + } + box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); + th { + text-align: center; + } + td { + text-align: center; + } + @media screen and (max-width: $mobile) { + width: 95%; + padding-top: 20px; + } + } + .about-top { + color: white; + font-size: 15px; + text-align: center; + margin: 2%; + } + @media screen and (max-width: $mobile) { + width: 100%; + } } .container-app { - background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); - height: 40% !important; + background-image: linear-gradient(0deg, rgba(208, 46, 44, 1) 20%, rgb(225, 73, 78) 100%); + height: 40% !important; - .header-app { - margin: auto; - width: 50%; + .header-app { + margin: auto; + width: 50%; - @media screen and (max-width: $mobile) { - width: 100%; - float: none; - padding: 10px; - h1 { - line-height: 50px; - } - img { - width: 100%; - } - } + @media screen and (max-width: $mobile) { + width: 100%; + float: none; + padding: 10px; + h1 { + line-height: 50px; + } + img { + width: 100%; + } + } - h1 { - padding-top: 9rem !important; - color: white; - text-align: center; - font-size: 50px; - padding-bottom: 2rem !important; - font-weight: normal; - } - h3 { - text-align: center; - color: white; - font-weight: normal; - padding-bottom: 2rem !important; - } - } + h1 { + padding-top: 9rem !important; + color: white; + text-align: center; + font-size: 50px; + padding-bottom: 2rem !important; + font-weight: normal; + } + h3 { + text-align: center; + color: white; + font-weight: normal; + padding-bottom: 2rem !important; + } + } } .image-holder-app { - img { - max-width: 80%; + img { + max-width: 80%; - margin: 0 auto; - } + margin: 0 auto; + } } .app-row { - background-color: white; + background-color: white; } .section { - padding: 70px 0; + padding: 70px 0; } .light-bg { - background-color: white; + background-color: white; } .darker-bg { - background-color: #f3f3f3; + background-color: #f3f3f3; } .section-title { - text-align: center; - margin-bottom: 3rem; - h3 { - margin: 0 auto; - text-align: center; - color: #cc1a17; - margin-bottom: 10px; - } - small { - color: #998a9b; - } + text-align: center; + margin-bottom: 3rem; + h3 { + margin: 0 auto; + text-align: center; + color: #cc1a17; + margin-bottom: 10px; + } + small { + color: #998a9b; + } } .card-features { - flex: 1; - display: flex; - flex-direction: row; - width: 80%; - margin: 0 auto; - @media screen and (max-width: $mobile) { - width: 90%; - flex-direction: column; - } + flex: 1; + display: flex; + flex-direction: row; + width: 80%; + margin: 0 auto; + @media screen and (max-width: $mobile) { + width: 90%; + flex-direction: column; + } } .card-body { - &:hover { - box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); - transform: translateY(-0.25em); - transition: all 0.3s ease; - } + &:hover { + box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); + transform: translateY(-0.25em); + transition: all 0.3s ease; + } - padding: 1.25rem; - background-color: white; - width: 23%; - margin: 0 auto; - border-bottom: 2px solid #cc1a17; + padding: 1.25rem; + background-color: white; + width: 23%; + margin: 0 auto; + border-bottom: 2px solid #cc1a17; - .card-title { - color: #cc1a17; - margin: 10px 0; - } - .card-text { - font-size: 15px; - text-align: justify; - text-justify: inter-word; - } - @media screen and (max-width: $mobile) { - width: 100%; - margin: 10px 0; - } + .card-title { + color: #cc1a17; + margin: 10px 0; + } + .card-text { + font-size: 15px; + text-align: justify; + text-justify: inter-word; + } + @media screen and (max-width: $mobile) { + width: 100%; + margin: 10px 0; + } } .login-app { - flex: 1; - display: flex; - flex-direction: row; + flex: 1; + display: flex; + flex-direction: row; - img { - width: 60%; - height: 60%; - } - background-image: url("./imgs/bg_phone.png"); - //border-bottom: 2px solid #cc1a17; + img { + width: 60%; + height: 60%; + } + .button-default { + padding: 20px; - @media screen and (max-width: $mobile) { - flex-direction: column; - img { - width: 100%; - height: 100%; - } - } + //font-family: "Bai Jamjuree", sans-serif; + font-size: 14px; + line-height: 14px; + color: black; + font-weight: 700; + text-transform: uppercase; + border: 1px solid #eeeeee; + padding: 30px 30px; + transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + -webkit-transition: border-color 150ms ease-out, background-color 150ms ease-out, color 150ms ease-out; + + &:hover { + border-color: #cc1a17; + background-color: #cc1a17; + color: #ffffff; + } + } + background-image: url("./imgs/bg_phone.png"); + //border-bottom: 2px solid #cc1a17; + + @media screen and (max-width: $mobile) { + flex-direction: column; + img { + width: 100%; + height: 100%; + } + } } .container-login { - // margin-top: 5rem; - width: 40%; - padding: 5%; - @media screen and (max-width: $mobile) { - width: 100%; - } - h1 { - margin: 0 auto; - color: #cc1a17; - } - .text-login { - margin-top: 1rem; - p { - margin: 20px 0px; - color: white; - } - } + // margin-top: 5rem; + width: 40%; + padding: 5%; + @media screen and (max-width: $mobile) { + width: 100%; + } + h1 { + margin: 0 auto; + color: #cc1a17; + } + .text-login { + margin-top: 1rem; + p { + margin: 20px 0px; + color: white; + } + } } .features-app { - width: 100%; - padding: 5% 15%; + width: 100%; + padding: 5% 15%; - @media screen and (max-width: $mobile) { - padding: 5% 3%; - flex: 1; - display: flex; - flex-direction: column; - } + @media screen and (max-width: $mobile) { + padding: 5% 3%; + flex: 1; + display: flex; + flex-direction: column; + } - background-color: #eeeeee; - h1 { - margin: 0 auto; - text-align: center; - margin-bottom: 70px; - } - .subtitle { - margin: 0 auto; - text-align: center; - color: #cc1a17; - margin-bottom: 10px; - } + background-color: #eeeeee; + h1 { + margin: 0 auto; + text-align: center; + margin-bottom: 70px; + } + .subtitle { + margin: 0 auto; + text-align: center; + color: #cc1a17; + margin-bottom: 10px; + } - /* Style tab links */ - .tablink { - background-color: #e3e3e3; + /* Style tab links */ + .tablink { + background-color: #e3e3e3; - color: #000000; - float: left; - //border-top: 2px solid #cc1a17; + color: #000000; + float: left; + //border-top: 2px solid #cc1a17; - outline: none; - cursor: pointer; - padding: 30px 20px; - font-size: 17px; - width: 16.665%; - .active { - color: red; - } - @media screen and (max-width: $mobile) { - width: 100%; - padding: 15px 20px; - } - } + outline: none; + cursor: pointer; + padding: 30px 20px; + font-size: 17px; + width: 16.665%; + .active { + color: red; + } + @media screen and (max-width: $mobile) { + width: 100%; + padding: 15px 20px; + } + } - .tablink:hover { - /// background-color: #777; - } + .tablink:hover { + /// background-color: #777; + } - /* Style the tab content (and add height:100% for full page content) */ - .tabcontent { - color: white; - display: none; - padding: 100px 20px; - padding-bottom: 0px; - height: 100%; - background: white; + /* Style the tab content (and add height:100% for full page content) */ + .tabcontent { + color: white; + display: none; + padding: 100px 20px; + padding-bottom: 0px; + height: 100%; + background: white; - box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); + box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04); - @media screen and (max-width: $mobile) { - padding: 20px 20px; - flex: 1; - // display: flex!important; - } + @media screen and (max-width: $mobile) { + padding: 20px 20px; + flex: 1; + // display: flex!important; + } - img { - padding: 40px; - width: 30%; - height: 30%; - @media screen and (max-width: $mobile) { - width: 100%; - height: 100%; - } - } + img { + padding: 40px; + width: 30%; + height: 30%; + @media screen and (max-width: $mobile) { + width: 100%; + height: 100%; + } + } - .tabDetails { - flex: 1; - display: flex; - flex-direction: row; - @media screen and (max-width: $mobile) { - flex-direction: column; - } - } - .tabText { - h2 { - color: #cc1a17; - padding-top: 20px; - } - h3 { - color: black; - } - p { - padding-top: 20px; - } - } - } + .tabDetails { + flex: 1; + display: flex; + flex-direction: row; + @media screen and (max-width: $mobile) { + flex-direction: column; + } + } + .tabText { + h2 { + color: #cc1a17; + padding-top: 20px; + } + h3 { + color: black; + } + p { + padding-top: 20px; + } + } + } } .download-app { - flex: 1; - flex-direction: row; - // padding: 20px; - // height: 70vh; - @media screen and (max-width: $mobile) { - flex-direction: column; - padding: 20px 0; - } - background-image: url("./imgs/bg_phone.png"); - img { - width: 100%; - height: 100%; - } - align-content: center; - align-items: center; + flex: 1; + flex-direction: row; + // padding: 20px; + // height: 70vh; + @media screen and (max-width: $mobile) { + flex-direction: column; + padding: 20px 0; + } + background-image: url("./imgs/bg_phone.png"); + img { + width: 100%; + height: 100%; + } + align-content: center; + align-items: center; - .left { - width: 100%; - padding: 5rem; - @media screen and (max-width: $mobile) { - padding: 1rem; - } - } - h1 { - text-align: center; - color: white; - } - h3 { - color: white; - text-align: center; - } - h2 { - color: white; - } - .buttons { - margin-top: 2rem; - flex: 1; - display: flex; - flex-direction: row; - align-content: center; - justify-content: center; - @media screen and (max-width: $mobile) { - flex-direction: column; - } - } + .left { + width: 100%; + padding: 5rem; + @media screen and (max-width: $mobile) { + padding: 1rem; + } + } + h1 { + text-align: center; + color: white; + } + h3 { + color: white; + text-align: center; + } + h2 { + color: white; + } + .buttons { + margin-top: 2rem; + flex: 1; + display: flex; + flex-direction: row; + align-content: center; + justify-content: center; + @media screen and (max-width: $mobile) { + flex-direction: column; + } + } - .button-app { - border: 1px solid white; - padding: 20px 20px; - margin: 20px; + .button-app { + border: 1px solid white; + padding: 20px 20px; + margin: 20px; - border-radius: 3px; - flex: 1; - display: flex; - @media screen and (max-width: $mobile) { - //padding: 20px; - } + border-radius: 3px; + flex: 1; + display: flex; + @media screen and (max-width: $mobile) { + //padding: 20px; + } - .button-logo { - color: white; - font-size: 60px; - padding: 0 20px; - } - .button-text { - color: white; - } - color: blue; - /* First we need to help some browsers along for this to work. + .button-logo { + color: white; + font-size: 60px; + padding: 0 20px; + } + .button-text { + color: white; + } + color: blue; + /* First we need to help some browsers along for this to work. Just because a vendor prefix is there, doesn't mean it will work in a browser made by that vendor either, it's just for future-proofing purposes I guess. */ - -o-transition: 0.5s; - -ms-transition: 0.5s; - -moz-transition: 0.5s; - -webkit-transition: 0.5s; - /* ...and now for the proper property */ - transition: 0.5s; - &:hover { - background-color: #cc1a17; - } - } - .button-android { - border: 1px solid white; - padding: 30px 40px; - margin: 20px; - color: white; - border-radius: 3px; - } + -o-transition: 0.5s; + -ms-transition: 0.5s; + -moz-transition: 0.5s; + -webkit-transition: 0.5s; + /* ...and now for the proper property */ + transition: 0.5s; + &:hover { + background-color: #cc1a17; + } + } + .button-android { + border: 1px solid white; + padding: 30px 40px; + margin: 20px; + color: white; + border-radius: 3px; + } } .warning-app { - background-color: #eeeeee; - padding: 20px; + background-color: #eeeeee; + padding: 20px; } .explain-qr { - flex: 1; - display: flex; - flex-direction: row; + flex: 1; + display: flex; + flex-direction: row; + padding: 50px; + justify-content: center; - img { - width: 20%; - height: 20%; - margin: 20px; - } - background-image: url("./imgs/bg_phone.png"); - //border-bottom: 2px solid #cc1a17; + + @media screen and (max-width: $mobile) { + padding: 10px; + } + .explain { + margin: 30px; + @media screen and (max-width: $mobile) { + margin: 10px; + } + h3 { + //margin-left: 20px; + margin-bottom: 0; + color: white; + margin: 20px; + } + p { + color: white; + margin-left: 20px; + } + + } - @media screen and (max-width: $mobile) { - flex-direction: column; - img { - width: 100%; - height: 100%; - } - } - h3 { - color: white; - margin: 30px; - } + img { + width: 20%; + height: 20%; + margin: 20px; + align-self: center; + } + background-image: url("./imgs/bg_phone.png"); + //border-bottom: 2px solid #cc1a17; + + @media screen and (max-width: $mobile) { + flex-direction: column; + img { + width: 100%; + height: 100%; + } + } } .ctf-explain { - background-color: #eeeeee; + flex: 1; + display: flex; + flex-direction: row; + background-color: #eeeeee; + padding: 40px; + h3 { + padding: 30px; + padding-bottom: 0px; + } + p { + padding: 30px; + text-align: justify; + text-justify: inter-word; + } + img { + width: 30%; + height: 30%; + } + @media screen and (max-width: $mobile) { + flex-direction: column; + img { + width: 100%; + height: 100%; + } + p { + width: 100%; + padding: 15px; + } + padding: 1px; + } } +.ctf-levels { + + .level1-ctf { + background-color: #de6d6b; + } + .level2-ctf { + background-color: #d95856; + } + .level3-ctf { + background-color: #d54341; + } + .level4-ctf { + background-color: #d02e2c; + } + .level5-ctf { + background-color: #cc1a17; + } + .level { + @media screen and (max-width: $mobile) { + padding: 30px 10px; + + } + padding: 80px; + h3 { + color: white; + padding-left: 30px; + } + .sub-container { + @media screen and (max-width: $mobile) { + flex-direction: column; + + } + flex: 1; + display: flex; + flex-direction: row; + .sub-level { + width: 100%; + border: 1px dashed white; + margin: 20px; + padding: 20px; + align-content: center; + flex: 1; + display: flex; + flex-direction: column; + justify-content: center; + @media screen and (max-width: $mobile) { + // flex-direction: column; + padding:5; + margin:10px 0; + } + + p { + color: black; + text-align: justify; + text-justify: inter-word; + } + i { + color: #eeeeee; + font-size: 18px; + } + .btn-dwn-ctf { + flex: 1; + display: flex; + flex-direction: row; + color: white; + // border: 1px dashed white; + width: 40%; + margin: 20px; + //padding: 20px; + text-align: center; + margin: 0 auto; + i { + font-size: 30px; + } + &:hover { + // background-color: black; + //color: #cc1a17; + text-decoration: none; + a:hover { + text-decoration: none; + } + } + h3 { + font-size: 20px; + margin: 10px; + align-content: center; + align-self: center; + } + } + } + } + } +} +.ctf-prizes { + padding: 50px; + h3 { + padding: 30px; + padding-bottom: 0px; + } + h5 { + padding-left: 30px; + color: #cc1a17; + } + @media screen and (max-width: $mobile) { + padding: 0; + h3{ + padding: 20px; + text-align: center; + } + h5{ + text-align: center; + padding: 10px; + } + } + .prizes-container { + flex: 1; + display: flex; + flex-direction: row; + padding-top: 30px; + .prize { + flex: 1; + flex-direction: column; + display: flex; + width: 100%; + //background-color: red; + margin: 20px; + align-content: center; + align-items: center; + .prize-logo { + font-size: 100px; + } + } + @media screen and (max-width: $mobile) { + flex-direction: column; + + .prize{ + margin: 0 + } + padding-bottom: 20px; + } + + } +} + \ No newline at end of file