-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
147 lines (136 loc) · 2.32 KB
/
main.css
File metadata and controls
147 lines (136 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800');
/*
font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Comfortaa', cursive;
font-family: 'Tinos', serif;
*/
*{
margin: 0;
padding: 0;
}
#brother{
position: absolute;
opacity: 0;
color: white;
z-index: 1000;
right: 100px;
top: 6px;
font: 300 15px 'Montserrat', sans-serif;
transition: all .5s;
}
body{
background-color: #0e003b;
background-image: url("https://www.transparenttextures.com/patterns/diagonales-decalees.png");
font-family: 'Montserrat', sans-serif;
}
#main{
height: 100vh;
width: 100%;
position: absolute;
overflow: hidden;
z-index: 999;
transition: all .3s;
}
#icon{
height: 25px;
width: 30px;
position: fixed;
bottom: 20px;
left: 50%;
transform: translate(-50%,-50%);
z-index: 999;
}
#icon:hover{
cursor: pointer;
}
#line{
height: 5px;
width: 30px;
background-color: white;
position: absolute;
bottom: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
#line:before{
content: "";
height: 5px;
width: 30px;
background-color: white;
position: absolute;
top: -10px;
}
#line:after{
content: "";
height: 5px;
width: 30px;
background-color: white;
position: absolute;
top: 10px;
}
#menu{
height: 100px;
width: 100%;
position: absolute;
bottom: 0;
color: white;
letter-spacing: 3px;
}
#m1,#m2{
cursor: pointer;
height: 100px;
width: 10%;
text-align: center;
float: right;
position: absolute;
top: 100%;
left: 25%;
}
#m2{
left: 35%;
}
#m3,#m4{
cursor: pointer;
height: 100px;
width: 10%;
text-align: center;
float: right;
position: absolute;
top: 100%;
right: 25%;
}
#m4{
right: 35%;
}
/*preview*/
.preview{
text-align: center;
}
.preview>img{
margin: 80px 5px 0 5px;
}
#img1{
margin-right: 200px;
opacity: 0;
transition: all .5s;
}
#img3{
margin-left: 200px;
opacity: 0;
transition: all .5s;
}
h1{
font-size: 3em;
margin: 50px auto 0 auto;
transition: all .4s;
}
h2{
margin: 10px auto 0 auto;
}
h1,h2{
font-weight: 500;
color: white;
text-shadow: 2px 2px 3px black;
max-width: 50%;
}