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

secondmenu.scss « modules « css « assets - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d8c92a47e85108bbba9c2d62da0afeef251b194 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import "../variables.scss";

.second-menu {
	.menu {
		background: #fbfbfb;
		border-top: solid 1px #e4e4e4;
		text-transform: capitalize;
		vertical-align: middle;
		z-index: 2;
		transform: translateZ(0);
	    will-change: transform;
    	transition: transform 500ms ease;
    	transform: translate3d(0px, 0px, 0px);
    	opacity: 0;


	    &.hidedPrincipalNavigation {
	    	transform: translate3d(0px, -100px, 0px);
	    }

		.buttons {
			text-transform: uppercase;
			font-size: 14px;
			font-weight: 600;
			padding: 40px 0 30px 0;
			border-bottom: solid 1px #e4e4e4;

        	@media (max-width: $break-big) {
				padding: 30px 0 25px 0;
			}

			a:not(.btn) {
        	@media (max-width: $break-big) {
        		display: none;
				}
			}

			a:not(.button) {
        	@media (max-width: $break-big) {
        		display: none;
				}
			}

			a {
				padding-right: 10px;
				color: $dark-grey;
                transition: all 0.3s ease;
                letter-spacing: 1px;

				&:focus {
					text-decoration: none;
				}

				&.active {
					text-decoration: none;
					color: white;
				}

				&:hover {
					text-decoration: none;
					color: white;
				}
			}

			.btn-primary {
				float: right;
				font-size: 14px;
				padding: 8px 20px;
				margin-left: 20px;
				margin-top: -5px;
				color: white;

				@media (max-width: $break-small) {
				margin-top: 10px;
				}

				&:hover {
					text-decoration: none;
					color: white;
				}

				&:before {
					background: none;
				}
			}
			.button--blue {
				float: right;
				font-size: 14px;
				padding: 0 20px 0 20px;
				margin: -9px 0px 0px 20px;
/* 				margin-left: 20px; */
/* 				margin-top: -5px; */
				color: white;
				height: 40px;
				line-height: 50px;

				@media (max-width: $break-small) {
				margin-top: 10px;
				}

				&:hover {
					text-decoration: none;
				}

				&:before {
					background: none;
				}
			}
		}
	}
}