-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (104 loc) · 1.85 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
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: 'Josefin Sans', sans-serif;
}
body{
background: whitesmoke;
display: flex;
padding-top: 3px;
padding-left: 5px;
line-height: 1.5;
}
.card{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 500px;
height: auto;
background: white;
border-radius: 5px;
box-shadow: 0px 0px 10px gray;
padding-top: 40px;
}
.card .head{
font-weight: 700;
position: absolute;
left: 50%;
transform: translate(-50%);
color: #2F3C7E;
}
.card .line{
border-bottom: 2px solid #2F3C7E;
margin-top: 30px;
}
.card .form{
padding-left: 30px;
padding-top: 20px;
color: #2F3C7E;
font-weight: 700;
}
.card input{
width: 80px;
height: 50px;
outline: none;
padding-left: 7px;
border: 1.5px solid #2F3C7E;
box-shadow: 1px 1px 2px #2F3C7E;
}
.block{
width: 145px;
padding: 5px 20px;
display: inline-block;
margin-top: 10px;
}
input[type="text"]{
color: #2F3C7E;
font-weight: 600;
font-size: 20px;
}
input[type="text"]::after{
color: #2F3C7E;
font-weight: 600;
font-size: 20px;
}
.button{
padding: 20px;
position: absolute;
left: 50%;
transform: translate(-50%);
}
.button button{
height: 50px;
width: 130px;
outline: none;
border: 2px solid white;
background: #2F3C7E;
color: white;
font-size: 24px;
font-weight: 400;
cursor: pointer;
border-radius: 5px;
}
#output{
display: block;
margin: 10px;
margin-top: 90px;
padding: 10px;
overflow: hidden;
font-size: 30px;
line-height: 1.5;
color: #2F3C7E;
font-weight: 500;
}
label{
color: #2F3C7E;
font-weight: 800;
font-size: 20px;
}
.card input::placeholder{
color: #2F3C7E;
font-size: 10px;
}