-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.css
105 lines (98 loc) · 2.61 KB
/
theme.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
}
.boody{
display: flex;
justify-content: space-around;
align-items: center;
margin-top: 5em;
}
nav{
display: flex;
justify-content: space-around;
align-items: center;
min-height: 7vh;
background-color: #e7e6e6;
}
.inscrirer{
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
padding: 4em;
background-color: #F5F5F5;
border-radius: 10px;
}
.langu{
display: flex;
margin-right: 1em;
padding: 0.4em;
border-radius: 7px;
background-color: #ffffff;
}
.langu select{
background-color: #ffffff;
border: none;
outline: 0;
padding-left: 0.4em;
padding-right: 0.4em;
font-weight: bold;
text-align: center;
}
.langu select option{
background-color: c9c9c9;
}
.langsocial{
display: flex;
}
.social{
margin-left: 0.5em;
align-items: center;
justify-content: space-around;
font-size: x-large;
}
.social i{
margin-left: 0.4em;
cursor: pointer;
opacity: 70%;
transition: ease-in 0.2s;
}
.social i:hover{
opacity: 100%;
}
.formy{
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: column;
}
.formy input{
padding: 0.8em;
border: none;
border-radius: 9px;
margin: 1.5em;
}
.formy input:not(:last-child){
width: 25em;
}
.cappo{
width: 10em;
}
.captcha img{
width: 35%;
}
.formy button{
padding: 0.7em;
border-radius: 8px;
border: none;
background-color: #D00524;
color: rgb(233, 233, 233);
font-size: large;
padding-left:2.5em;
padding-right:2.5em;
}