-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylesheet.css
127 lines (112 loc) · 3.93 KB
/
stylesheet.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
126
127
@font-face {
font-family: SegoeUI;
src:
local("Segoe UI Light"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype");
font-weight: 100;
}
@font-face {
font-family: SegoeUI;
src:
local("Segoe UI Semilight"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff2) format("woff2"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.woff) format("woff"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semilight/latest.ttf) format("truetype");
font-weight: 200;
}
@font-face {
font-family: SegoeUI;
src:
local("Segoe UI"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff2) format("woff2"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.woff) format("woff"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/normal/latest.ttf) format("truetype");
font-weight: 400;
}
@font-face {
font-family: SegoeUI;
src:
local("Segoe UI Bold"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff2) format("woff2"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.woff) format("woff"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/bold/latest.ttf) format("truetype");
font-weight: 600;
}
@font-face {
font-family: SegoeUI;
src:
local("Segoe UI Semibold"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff2) format("woff2"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.woff) format("woff"),
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/semibold/latest.ttf) format("truetype");
font-weight: 700;
}
*{
box-sizing: border-box;
font-family: SegoeUI;
}
body{
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
background-image: url("./assets/logon.jpg");
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
flex-wrap: wrap;
flex-direction: column;
}
.profileicon{
margin-bottom: 40px;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
}
.glass::after{
backdrop-filter: blur(10px);
}
.profile-border{
width: 12vw;
min-width: 180px;
filter: drop-shadow(0px 10px 10px black);
}
.profileimg{
position: absolute;
border-radius: 5%;
width: 10.2vw;
min-width: 153px;
}
.forwardbtn{
border: none;
outline: solid 1px #757575;
box-shadow:inset 0px 0px 0px 1px #fcfcfc;
color: black;
padding: 3px;
background: rgb(207,207,207);
background: linear-gradient(0deg, rgba(207,207,207,1) 0%, rgba(219,219,219,1) 49%, rgba(235,235,235,1) 49%, rgba(252,252,252,1) 100%);
width: 6vw;
min-width: 45px;
border-radius: 4px;
height: 28px;
}
.forwardbtn:hover{
outline: solid 1px #3c7fb1;
background: rgb(167,217,245);
background: linear-gradient(0deg, rgba(167,217,245,1) 0%, rgba(188,229,252,1) 49%, rgba(217,240,252,1) 49%, rgba(234,246,253,1) 100%);
}
.forwardbtn:active{
outline: solid 1px #2c628b;
background: rgb(104,178,218);
background: linear-gradient(0deg, rgba(104,178,218,1) 0%, rgba(152,209,239,1) 49%, rgba(196,229,246,1) 49%, rgba(229,244,252,1) 100%);
}
button{
user-select: none;
}