-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (114 loc) · 1.95 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*Getting font*/
@font-face {
font-family: "odin-logo";
src: url(./images/Norse-Bold.otf);
}
body {
margin: 0%;
height: 100vh;
width: 100vw;
display: flex;
flex-direction: row;
}
/*leftside*/
.pic img{
position: relative;
width: 40vw;
height: 100vh;
}
.odin_pic > img{
width:100px;
height: 120px;
}
.odin_pic p{
font-family: "odin-logo";
}
.odin_pic {
justify-content: center;
align-items: center;
top: 5vh;
height: 12vh;
min-width: 40vw;
position: absolute;
display: flex;
gap: 1em;
font-size: 73px;
color: white;
background:linear-gradient(90deg,blue,purple) ;
opacity: 0.2;
}
.pic_credit {
bottom: 2vh;
text-align: center;
position: absolute;
color: aliceblue;
min-width: 40vw;
}
/*Right side*/
.right{
position: absolute;
display: flex;
flex-direction: column;
width: 60vw;
height: 100vh;
left: 40vw;
top:0px;
}
.formInfo, .form, .accBtn{
position: relative;
min-height: 33.33vh;
max-width: 60vw;
background-color: #F0F0F0;
}
.formInfo p{
justify-content: space-between;
align-self: center;
justify-self: center;
display: flex;
color: black;
font-size:3.5vh;
flex-wrap: wrap;
}
.form {
margin-top: 3vh;
max-height: 33.33%;
background-color:white;
}
.form div{
justify-self: center;
align-self: center;
display: block;
margin: 3vh 5vw;
padding: 5px 5px;
}
.form label{
margin: auto 1vw auto 1vw;
}
.form input{
border-radius: 5px;
}
.form span{
display: inline;
grid-template-columns: auto;
margin: auto 2vw;
}
.form p{
text-align: start;
margin: 0px;
font-size: 30px;
padding: 5px;
}
form input:invalid{
border-color:rgb(156, 25, 25);
}
form input:valid{
border-color: rgb(67, 67, 218);
}
.accBtn *{
margin: 20px 50px;
}
.accBtn > button{
padding: 5px;
background-color: #596D48;
border-radius: 5px;
}