-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (115 loc) · 1.88 KB
/
style.css
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
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
#hero{
width:100%;
height:100vh;
background-image:url(Radiance_img/bg1.png);
background-size:cover;
background-position:center;
position:relative;
}
.navbar{
width: 90%;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
z-index: 10;
}
.navbar .logo{
width: 60px;
margin: 30px 0;
cursor: pointer;
}
.user{
display: flex;
align-items: center;
}
.user img{
width:30px ;
margin-left: 50px;
cursor:pointer;
border-radius: 50%;
}
button{
padding:8px 25px ;
background: transparent;
outline: none;
border: 2px solid #fff;
border-radius:20px ;
color:#fff;
font-size: 12px;
font-weight: bold;
cursor:pointer
}
.container{
width: 50%;
height:100vh;
background: rgba(86,86,86,0.3);
backdrop-filter:blur(10px) ;
position: absolute;
left: 0;
top:0;
}
.info{
width: 550px;
color:#fff;
position: absolute;
right: 0;
top:50%;
transform:translateY(-50%);
}
.info h1{
font-size: 60px;
letter-spacing: 10px;
}
.info p{
color:#f0eef1;
font-size: 13px;
margin:20px 0;
line-height:18px ;
}
.info input{
width:50%;
padding: 8px 10px;
outline: none;
border: 2px solid#fff;
border-radius: 20px;
background: transparent;
color: #fff;
font-size: 12px;
}
::placeholder{
color:#ccc;
}
.slider{
display: flex;
align-items: center;
position:absolute ;
right: 30px;
bottom:50px ;
}
#prev, #next{
width: 20px;
cursor: pointer;
}
.preview{
display: flex;
align-items: center;
margin: 0 60px;
}
.preview img{
width: 60px;
margin: 0 10px;
opacity: 0.4;
}
.preview .active{
display: block;
border: 3px solid #fff;
width: 100px;
opacity:1 ;
}