-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome-page.css
99 lines (86 loc) · 1.8 KB
/
welcome-page.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
body{
font-family: sans-serif, poppins;
}
.main-welcome-text{
width: auto;
height: auto;
/* border-style: solid;*/
margin-left: 25vw;
margin-right: 25vw;
margin-top: 100px;
}.main-welcome-text b{
color: royalblue;
}
.what{
color: #777;
}
.ll-des{
color: #777;
}
.h-text{
font-size: 90px;
font-weight: bold;
color: royalblue;
cursor: pointer;
}
.h-des{
font-size: 20px;
color: #555;
cursor: pointer;
}
a {
text-decoration: none;
}
.name-input{
width: 100%;
height: 50px;
border-radius: 3px;
border-width: 2.3;
border-style: solid;
border-color: royalblue;
padding: 10px;
margin-top: 7px;
outline-style: none;
transition-duration: 0.3s;
font-size: 16px;
color: #444;
display: block;
}.name-input:hover{
width: 100%;
height: 50px;
border-radius: 3px;
border-width: 2.3;
border-style: solid;
border-color: royalblue;
padding: 10px;
margin-top: 7px;
outline-style: none;
scale: 1.05;
}
.primary-done-btn{
width: 15%;
height: auto;
padding: 10px;
padding-left: 28px;
padding-right: 28px;
border-style: hidden;
background-color: royalblue;
color: #fff;
border-radius: 3px;
cursor: pointer;
transition-duration: 0.3s;
display: block;
margin-top: 15px;
margin-left: 85%;
}.primary-done-btn:hover{
scale:1.03;
}.primary-done-btn:active{
scale:0.98;
background-color: royalblue;
}
.second-tab{
display: none;
}
.first-tab{
display: block;
}