-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (98 loc) · 1.76 KB
/
style.css
File metadata and controls
111 lines (98 loc) · 1.76 KB
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
:root
{
--color-1: #2c58a5;
--color-2: #1a0dbb;
--color-3: #dfe7f6;
--color-4: #4f4f4f;
}
body
{
background-color: var(--color-1);
font-family: 'outfit', sans-serif;
display: flex;
justify-content: center;
}
.main-con
{
/* background-color: var(--color-2); */
background-color: var(--color-3);
width: 460px;
height: 725px;
/* border: 2px solid var(--color-1); */
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
}
.main-con .con
{
color: var(--color-1);
/* background-color: var(--color-1); */
/* background-color: var(--color-1); */
width: 90%;
height: 90%;
border: 2px solid var(--color-1);
margin: auto;
border-radius: 8px;
}
.main-con .con h1
{
text-align: center;
}
.main-con .con .input-field
{
text-align: center;
}
.main-con .con .input-field #html
{
border: none;
width: 80%;
padding: 10px;
border-radius: 4px;
}
.main-con .con .input-field #html:focus
{
outline: none;
}
.main-con .con .input-field #css
{
border: none;
width: 80%;
margin-top: 10px;
padding: 10px;
border-radius: 4px;
}
.main-con .con .input-field #css:focus
{
outline: none;
}
.main-con .con .input-field #btn
{
cursor: pointer;
border: none;
border-radius: 4px;
margin-top: 10px;
width: 50%;
padding: 10px;
}
.main-con .con .screen
{
font-size: 25px;
font-weight: 200;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
width: 90%;
height: 30%;
margin-top: 300px;
border-radius: 8px;
margin: auto;
}
.main-con .con #para-note
{
margin-top: 30px;
font-size: 14px;
text-align: center;
color: var(--color-1);
}