-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (51 loc) · 992 Bytes
/
index.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
* {
box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,800;1,400;1,600;1,900&family=Roboto:ital,wght@0,100;0,500;1,400;1,500;1,900&display=swap");
body {
font-size: 2vw;
background-image: linear-gradient(#6441A5, #2a0845);
font-family: "Montserrat", sans-serif;
}
#top {
font-weight: bold;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
border-bottom-left-radius:20px;
border-bottom-right-radius: 20px;
}
#block
{
min-width: 40vw;
transition: all 0.8s;
font-size: large;
padding: 1vw;
opacity: 0.8;
}
#block:hover
{
zoom: 1.2;
opacity: 1;
}
#logo {
padding:1vw;
width: 7vw;
}
#stdreg
{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#nameDesk {
text-align: left;
display: block;
font-size: 2.7vw;
}
#forms
{
background-color: blue;
}