-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (91 loc) · 1.82 KB
/
style.css
File metadata and controls
104 lines (91 loc) · 1.82 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
p, body {
margin: 0;
}
body {
background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);
}
header {
font-family: system-ui;
margin-bottom: 1%;
display: flex;
}
main {
width: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: center;
}
textarea {
width: 40vw;
height: 40vh;
resize: none;
}
header, footer{
color: white;
justify-content: center;
}
footer {
background-color: #393e83;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
height: 3rem;
}
.transpiler-button{
transition-duration: 0.4s;
background-image: linear-gradient(60deg, #FBAB7E 0%, #F7CE68 80%);
color: #000000;
font-size: 1rem;
font-family: sans-serif;
border: none;
border-radius: 10rem;
width: 7rem;
height: 3rem;
}
.transpiler-button:hover{
background-image: linear-gradient(60deg, #F7CE68 0%, #F7CE68 100%);
font-size: 1.1rem;
}
.container-description {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-top: 1%;
font-family: system-ui;
}
.container-exemplo {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
margin-bottom: 2%;
}
.container-box {
width: 100%;
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
align-items: center;
}
.box-example{
background-color: #3ed2ff;
font-family: monospace;
font-size: 1rem;
word-wrap: break-word;
border-radius: 2%;
padding: 1%;
}
.link_img {
min-width: 15px;
max-width: 30px;
margin-left: 5px;
border-radius: 50%;
}