-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (102 loc) · 1.81 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
}
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: #d1d1d1;
}
section {
width: 250px;
height: 280px;
background: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
gap: 20px;
font-size: 20px;
padding: 20px 0;
border-radius: 15px;
}
section .title {
font-size: 18px;
}
.middle-icons {
width: 80%;
height: 50px;
display: flex;
justify-content: space-around;
align-items: center;
font-size: 30px;
}
section input {
width: 80%;
background-color: none;
height: 35px;
}
section a {
color: #d1d1d1;
font-size: 30px;
}
.material-symbols-outlined:hover,
.fa-camera:hover,
section a:hover {
color: #fff;
cursor: pointer;
}
footer {
width: 250px;
height: 30px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
}
.material-symbols-outlined {
cursor: pointer;
margin-top: 2px;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: rgba(88, 88, 88, 0.7);
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: 150%;
left: 50%;
margin-left: -100px;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent rgb(88, 88, 88) transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
input[type="file"] {
display: none;
}