Welcome to mirror list, hosted at ThFree Co, Russian Federation.

signup.scss « pages « css « assets - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f666a8935b9b5cb93902f50e2dfa937e9f83032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import '../variables';
@import '../modules/transparent-navbar';
.background .topheader {
    top: 25%;
}

.register-background {
    background: url('../../img/headers/register.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    height: 70vh;
    min-height: 600px;
    max-height: 800px;
	h3 {
		font-size: 30px;
		font-weight: 500;
		color: white;
	}
    /*    border-radius: 0 !important;
     *   height: 70vh;
     *   min-height: 600px;
     *   max-height: 800px;*/
}

section {
    padding: 50px 0 50px;
    .section--heading-1 {
        padding-bottom: 50px;
    }
    .section--paragraph--tittle {
        padding: 0;
    }
    .row {
        padding: 20px 0 20px 0;
    }
}

.section--providers {
    padding: 30px 0;
    background-color: $nextcloud-blue;
}


#register {
    width: 600px;
    max-width: 100vw;
    position: relative;
    margin-top: -200px;
    margin-bottom: 100px;
    padding: 0;
    transform: translateY(15px);
    opacity: 0;
    animation: 1s ease-out 3s 1 slideUpOnLoad;
    animation-fill-mode: forwards;
}
@keyframes slideUpOnLoad {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #register {
        margin-top: -220px;
    }
    .background .topheader {
        top: 20%;
    }
}