-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (74 loc) · 1.4 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
html {
height: 100%;
}
body {
height: 100%;
margin: 50;
font-family: Trebuchet MS;
background-color: #84CEEB;
display: grid;
align-items: center;
justify-items: center;
}
#main-event{
width: 25%;
height: 85%;
align-items: center;
justify-content: center;
background-color: #5680E9;
border-style: solid;
border-color: #5AB9EA;
border-width: 1px;
border-radius: 3px;
}
#login-info{
display: grid;
position: relative;
left: 20px;
top: 9%;
}
.login-square{
border-radius: 2px;
border: none;
margin-bottom: 7px;
width: 81%;
padding: 10px;
display: block;
}
#login-submit{
width: 87%;
border-color: #5AB9EA;
background-color: #8860D0;
border-width: 1px;
color: #E3E2DF;
border-radius: 2px;
cursor: pointer;
padding: 10px;
}
#form-header{
color: white;
position: relative;
left: 20px;
top: 5%;
font-size: 150%;
}
div{
font-size: 80%;
position: relative;
top: -35%;
color: #E3E2DF;
}
.error-text{
color: #ED4337;
font-size: 12px;
margin-left: 1px;
top: 4px;
}
input:invalid {
border: 2px solid red;
background: white url("file:///C:/Users/oumai/Desktop/SAMSUNG%20dev/2/final%20lab/error-icon.svg") right no-repeat;
}
input:valid {
border: 2px solid green;
background: white url("file:///C:/Users/oumai/Desktop/SAMSUNG%20dev/2/final%20lab/success-icon.svg") right no-repeat;
}