-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (95 loc) · 2.12 KB
/
style.css
File metadata and controls
96 lines (95 loc) · 2.12 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
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono:ital,wght@0,500;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
*{
margin: 0;padding: 0;
}
body{
background-color:rgb(229, 255, 180);
}
.headin{
text-align: center;
margin: 0 5px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-family: 'Red Hat Mono', monospace;
}
.maincont{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.select{
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-family: 'Red Hat Mono', monospace;
height: 300px;
width: 35vw;
background-color: rgb(184, 184, 255);
border: 3px double blue;
border-radius: 20px;
text-align: center;
padding-top: 50px;
}
.but{
height: 350px;
width: 35vw;
background-color: rgb(255, 180, 180);
border: 3px double red;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.code{
height:150px;
width: 35vw;
background-color: rgb(255, 205, 255);
border: 3px double violet;
border-radius: 20px;
margin: auto;
margin-top: 5px;
padding: 5px;
border: 3px double violet;
font-family: 'Ubuntu Mono', monospace;
}
.btn{
/* border: none;*/
padding: 5px;
}
.done{
margin: 10px auto;
padding: 2px;
font-family: 'Ubuntu Mono', monospace;
background-color:greenyellow;
font-size: 1.2rem;
border: 2px solid red;
border-radius: 10px;
}
.set{
margin: 5px 0;
}
@media screen and (max-width:950px){
.select{
width: 45vw;
}
.but{
width: 45vw;
}
}
@media screen and (max-width:740px){
.maincont{
flex-direction: column;
}
.headin{
font-size:0.9rem;
}
.select{
width: 90vw;
}
.but{
width: 90vw;
}
.code{
width: 90vw;
}
}